forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix celery#6074]: Add missing documentation for MongoDB as result ba…
…ckend.
- Loading branch information
Showing
2 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -218,7 +218,7 @@ Keeping Results | |
If you want to keep track of the tasks' states, Celery needs to store or send | ||
the states somewhere. There are several | ||
built-in result backends to choose from: `SQLAlchemy`_/`Django`_ ORM, | ||
`Memcached`_, `Redis`_, :ref:`RPC <conf-rpc-result-backend>` (`RabbitMQ`_/AMQP), | ||
`MongoDB`_, `Memcached`_, `Redis`_, :ref:`RPC <conf-rpc-result-backend>` (`RabbitMQ`_/AMQP), | ||
and -- or you can define your own. | ||
|
||
.. _`Memcached`: http://memcached.org | ||
|
@@ -286,9 +286,9 @@ original traceback: | |
.. warning:: | ||
|
||
Backends use resources to store and transmit results. To ensure | ||
that resources are released, you must eventually call | ||
:meth:`[email protected]` or :meth:`[email protected]` on | ||
Backends use resources to store and transmit results. To ensure | ||
that resources are released, you must eventually call | ||
:meth:`[email protected]` or :meth:`[email protected]` on | ||
EVERY :class:`~@AsyncResult` instance returned after calling | ||
a task. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters