Django where is celery task information saved?

Multi tool use


Django where is celery task information saved?
I am wondering where the celery task info. is saved. I checked the tables in the database and find no relevant items. It seems when I shut down the local server and restart it later, celery knows the tasks which are in the queue.
1 Answer
1
In celery, we're using Brokers
to store task information. Brokers are kind of database, used with celery because they are fast and efficient for a Producer-Consumer scenario
Why Not using SQL DB?
SQL databases are capable of running in a network and dealing with concurrent access. The problem with them is that they are too slow. NoSQL databases, by contrast, are quite fast, but many times they lack reliability
I found one article, Celery: an overview of the architecture and how it works on the internet, which explian everything in simple words
Brokers
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.