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

celery.backends.couchbase

Couchbase result store backend.

class celery.backends.couchbase.CouchbaseBackend(url=None, *args, **kwargs)[source]

Couchbase backend.

Raises:

celery.exceptions.ImproperlyConfigured – if module https://pypi.org/project/couchbase/ is not available.

bucket = 'default'
property connection
delete(key)[source]
get(key)[source]
host = 'localhost'
key_t

alias of str

mget(keys)[source]
password = None
port = 8091
quiet = False
set(key, value)[source]
supports_autoexpire = True

If true the backend must automatically expire results. The daily backend_cleanup periodic task won’t be triggered in this case.

timeout = 2.5
username = None