This document describes the current stable version of Celery (5.0). For development docs, go here.

celery.backends.cache

Memcached and in-memory cache result backend.

class celery.backends.cache.CacheBackend(app, expires=None, backend=None, options=None, url=None, **kwargs)[source]

Cache result backend.

as_uri(*args, **kwargs)[source]

Return the backend as an URI.

This properly handles the case of multiple servers.

client[source]
delete(key)[source]
expire(key, value)[source]
get(key)[source]
implements_incr = True
incr(key)[source]
mget(keys)[source]
servers = None
set(key, value)[source]
supports_autoexpire = True
supports_native_join = True