Python-memcached is the official supported memcached driver for Django.
Does it support
Consistent hashing
Binary protocol
If it does, how do I use those features within Django? I couldn't find any documentation.
...
I want to use all the data in my python app engine memcache. I do not know the keys in advance.
How do I go about getting all data?
...
Is there some ready-made addon that alerts admins about memcached instance being inaccessible from a Django application? I don't mean here monitoring memcached daemon itself, but something that checks if my Django app benefits from caching.
My basic idea is to check if cache.get that follow cache.set actually returns something, and if n...