[Django]-In Django, how to clear all the memcached keys and values?

42👍

from django.core.cache import cache
cache._cache.flush_all()

Also see this ticket, it has a patch (that I haven’t tested) to flush any type of cache backend: http://code.djangoproject.com/ticket/11503

👤shanyu

2👍

And an one-liner from console:

echo "from django.core.cache import cache; cache._cache.flush_all()" | ./manage.py shell [--settings=myapp.settings_live]
👤Wtower

1👍

An easiest and fastest way:

echo flush_all > /dev/tcp/localhost/11211

Leave a comment