In Django, how to clear all the memcached keys and values? In Django, how to clear all the memcached keys and values? django django

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


from django.core.cache import cachecache._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


And an one-liner from console:

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


An easiest and fastest way:

echo flush_all > /dev/tcp/localhost/11211