class celery.backends.cache.Backend(*args, **kwargs)¶
Backend using the Django cache framework to store task metadata.
class celery.backends.cache.DjangoMemcacheWrapper(cache)¶
Wrapper class to django’s memcache backend class, that overrides the
get() method in order to remove the forcing of unicode strings
since it may cause binary or pickled data to break.