超过here at the Django groups Tom Evans explains the method在Django中执行 比较并设置 ,如下所示
You can access the memcached client via django though:
>>> from django.core import cache
>>> c=cache.get_cache('default')
>>> help(c._client.cas)
但不知怎的,我无法让它发挥作用。
>>> from django.core import cache
>>> c=cache.get_cache('memcache')
>>> help(c._client.cas)
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'MemcachedCache' object has no attribute '_client'
如果不是上面显示的方法,我如何才能进行 比较并设置Django ?
我使用的是Django 1.3版。
答案 0 :(得分:3)
@property
def _cache(self):
"""
Implements transparent thread-safe access to a memcached client.
"""
if getattr(self, '_client', None) is None:
self._client = self._lib.Client(self._servers)
return self._client
所以,我会说,这会奏效:
c._cache.cas
试试,让我知道!
了解更多详情:https://code.djangoproject.com/svn/django/trunk/django/core/cache/backends/memcached.py