This document describes the current stable version of Celery (5.6). For development docs, go here.
celery.backends.filesystem¶
File-system result store backend.
- class celery.backends.filesystem.FilesystemBackend(url=None, open=<built-in function open>, unlink=<built-in function unlink>, sep='/', encoding='UTF-8', *args, **kwargs)[source]¶
File-system result backend.
- Parameters:
- supports_result_compression = True¶
If true the backend can store a result payload that has been compressed, which means storing and returning arbitrary bytes unchanged. Backends that put the payload inside a JSON document, or that decode it to text on the way out, can’t, and the
result_compressionsetting is ignored for them.