I am using celery with Redis.
Current Redis is used as a broker and as a result backend.
BROKER_TRANSPORT = 'redis'
BROKER_URL = 'redis://domain:8888/0'
CELERY_RESULT_BACKEND = 'redis://domain:8888/0'
I want to clear few things:
- What is the benefit of using the result backend? I mean what I will get by using it
- How can I see that it is working? I mean will something be stored in Redis? Will that storage is permanent? How can I query that? Will that storage grow with time etc
- Can I monitor that result backend stuff with the celery flower?