0

在根据文档中,它有效地表示您应该KEY_PREFIX在服务器之间共享缓存实例时使用 a 。我的问题是 KEY_PREFIX 何时应用?在这里使用MemcachedStats是基本示例

from memcached_stats import MemcachedStats
from django.core.cache import get_cache

cache = get_cache('default')
assert len(cache._servers) == 1
mem = MemcachedStats(*cache._servers[0].split(":"))

# Now lets play verify no key
cache.get("TEST") == None
key = next((x for x in mem.keys() if "TEST" in x))

# Create a key
cache.set("TEST", "X", 30)
key = next((x for x in mem.keys() if "TEST" in x))

print key
':1:TEST'

在这一点上它看起来不错 - 我的意思是前缀已设置或我认为..

from django.conf import settings
print settings.KEY_PREFIX
'beta'
print settings.SITE_ID
2
print settings.CACHE_MIDDLEWARE_KEY_PREFIX
'beta'

在这一点上,这只是一个错误吗?

4

1 回答 1

0

有趣的问题。事实证明,您需要非常仔细地查看文档并注意到 KEY_PREFIX 是 CACHES[ <cache>] 中的子键。您需要像这样定义它。

CACHE_MIDDLEWARE_KEY_PREFIX  = 'staging'
CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': 'production_cache_server:11211',
        'KEY_PREFIX': CACHE_MIDDLEWARE_KEY_PREFIX,
    }
}

这也是定义 a 的方法KEY_FUNCTION。我证实这也可以。

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': 'production.jxycyn.cfg.usw1.cache.amazonaws.com:11211',
        'KEY_FUNCTION': 'apps.core.cache_utils.make_key',
    }
}
于 2013-09-22T17:12:24.877 回答