Class MemcachedCache
An implementation of a cache binding using python-memcached
Declaration
source linkDocumentation
Methods
▶ def __init__(self, server, params) override ▶ def delete(self, key, version=None) overrideinherited doc Delete a key from the cache and return whether it succeeded, failing silently.
▶ def get(self, key, default=None, version=None) overrideinherited doc Fetch a given key from the cache. If the key does not exist, return default, which itself defaults to None.