django-pymemcache is a Django cache backend that uses Pinterest's pymemcache library as the backend.
pip install django-pymemcache
Simply use it as any other Cache backend, e.g.
CACHES = {
'default': {
'BACKEND': 'djpymemcache.backend.PyMemcacheCache',
'LOCATION': [
'127.0.0.1:11211',
],
},
}
https://github.com/django-pymemcache/django-pymemcache/issues