I installed them both, but i get a None every time i try to get some key
>>from django.core.cache import cache #no errors
>>cache.set('value1','value2',39) #no errors
>>cache.get('value1') #no errors but no value either
in settings.py i got
CACHES = {
'default':{
'BACKEND':'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION':'127.0.0.1:1991',
'TIMEOUT': 1200,
}
}
what is going on wrong? I don't have even the slightest idea what to debug or where to start ...