Incorrect timestamps in the content displays
I have problems with incorrect (outdated) datetime stamps for questions when I am using memcached.
Fragment of settings.py:
CACHE_TIMEOUT = 10
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': 'unix:/home/%username%/memcached.sock',
'TIMEOUT': 10,
'KEY_PREFIX': 'askbot'
}
}
Could you provide me any solutions?

Comments
On main page http://askbot.org/en/questions/ I see that my question was asked 0 mins ago, when I open question page (http://askbot.org/en/question/6820/askbotmemcached) I see - 8 mins ago. Also sometimes on main page http://askbot.org/en/questions/ I see 0 views for my quesion and sometimes 1 views. Why does it happen?