Base API¶
- class cachelib.base.BaseCache(default_timeout=300)¶
Bases:
object
Baseclass for the cache systems. All the cache systems implement this API or a superset of it.
- Parameters
default_timeout (int) – the default timeout (in seconds) that is used if no timeout is specified on
set()
. A timeout of 0 indicates that the cache never expires.
- add(key, value, timeout=None)¶
Works like
set()
but does not overwrite the values of already existing keys.- Parameters
- Returns
Same as
set()
, but alsoFalse
for already existing keys.- Return type
boolean
- clear()¶
Clears the cache. Keep in mind that not all caches support completely clearing the cache.
- Returns
Whether the cache has been cleared.
- Return type
boolean
- dec(key, delta=1)¶
Decrements the value of a key by delta. If the key does not yet exist it is initialized with -delta.
For supporting caches this is an atomic operation.
- delete(key)¶
Delete key from the cache.
- Parameters
key (str) – the key to delete.
- Returns
Whether the key existed and has been deleted.
- Return type
boolean
- delete_many(*keys)¶
Deletes multiple keys at once.
- Parameters
keys (str) – The function accepts multiple keys as positional arguments.
- Returns
A list containing all sucessfuly deleted keys
- Return type
boolean
- get(key)¶
Look up key in the cache and return the value for it.
- get_dict(*keys)¶
Like
get_many()
but return a dict:d = cache.get_dict("foo", "bar") foo = d["foo"] bar = d["bar"]
- get_many(*keys)¶
Returns a list of values for the given keys. For each key an item in the list is created:
foo, bar = cache.get_many("foo", "bar")
Has the same error handling as
get()
.
- has(key)¶
Checks if a key exists in the cache without returning it. This is a cheap operation that bypasses loading the actual data on the backend.
- inc(key, delta=1)¶
Increments the value of a key by delta. If the key does not yet exist it is initialized with delta.
For supporting caches this is an atomic operation.
- set(key, value, timeout=None)¶
Add a new key/value to the cache (overwrites value, if key already exists in the cache).
- Parameters
- Returns
True
if key has been updated,False
for backend errors. Pickling errors, however, will raise a subclass ofpickle.PickleError
.- Return type
boolean
- set_many(mapping, timeout=None)¶
Sets multiple keys and values from a mapping.
- Parameters
- Returns
A list containing all keys sucessfuly set
- Return type
boolean