Cuando corro python manage.py shell
y luego:Django caché cache.set No almacenar datos
from django.core.cache import cache
cache.set("stack","overflow",3000)
print cache.get("stack")
(output:) None
Traté de reiniciar Memcache, y aquí es lo que hay en mi configuración:
CACHES = {
'default' : {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION' : '127.0.0.1:11211',
}
}
¿Tiene uno de pitón-memcached o pylibmc instalado? –
Sí, tengo python-memcached instalado –
¿Has verificado que el puerto 11211 está abierto? –