I want to use Сelere with Redis as backend, I'll have a process that create tasks, stores ids and then runs again and checks statuses.
How to clear results and statuses that I don't need anymore, could I restrict time Сelery stores result ?
Like this:
task_id = task.apply_async().id
store_id(task_id) # my code, doesn't relate to celery
Then I will get tasks and check statuses:
task_id = get_id() # my code, doesn't relate to celery
task = AsyncResult(task_id)
# do something with task
# now I don't need Celery to store this result