我正在我的Windows系统上运行memcached服务,并且我已将我的开发设置配置为具有以下缓存设置:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
'TIMEOUT': 3600,
'OPTIONS': {
'MAX_ENTRIES': 100
}
}
}
我正在使用以下代码设置并从缓存中获取内容:
from django.core.cache import cache
def get_element(fsid):
element = cache.get(str(fsid)) # get element from memcache if present
if element is None:
info("cache miss for fsid-"+str(fsid))
fs = FlowStatusModel.objects.get(pk=fsid)
pickle_path = fs.pickle
gcs_pickle_path = fs.gcs_pickle
try:
info("reading from local disk")
with open(pickle_path, 'rb') as handle:
element = pickle.load(handle)
except:
info("local disk failed. copying file from cloud storage bucket to local disk")
create_and_copy(gcs_pickle_path, pickle_path)
with open(gcs_pickle_path, 'rb') as handle:
element = pickle.load(handle)
info("adding fsid-"+str(fsid) + " to cache with 1hour timeout")
cache.set(str(fsid), element, 3600)
return element
我在日志中看到始终存在缓存未命中。我无法弄清楚django是否能够在缓存中设置元素。如果我使用简单python manage.py shell
和set
从get
试用,我就可以获取数据了。我尝试从命令prompgt运行命令memcached.exe -vv
以查看它是否接收请求,但在两种情况下(来自dev server / manage.py shell)我都看到控制台上打印了任何set或get信息。我很感激在解决问题方面提供任何帮助。
答案 0 :(得分:0)
可能是因为:
fsid
这是一个非常小的数字。你可能正在进行大量的颠簸。每次向缓存添加内容时,很可能会替换其他内容。这可能是你的MAXITEMSIZE=12m
密钥发生的事情。
你也可能违反了memcached的最大项目大小。通过更改memcached配置文件(memcached.conf)并添加以下
来解决此问题_rdrand64_step
但是应该注意的是,如果你要存储这么大的对象,memcached可能不适合你。