I\'m trying to run some tasks in the background while users browse my site, but whenever I call a function using Celery it seems to be executed synchronously instead of asynchronously.
I need to develop a realtime re开发者_运维问答cent activity feed in django (with AJAX long-polling), and I\'m wondering what\'s the best strategy for the server-side.
I\'m attempting to implement a following scenario with Celery: two queues of (same) long-running tasks, one for \"normal\" and the other for \"idle\" priority.
I\'m planning on deploying a dynamic site that needs certain tasks to be done periodically in the background, let\'s say every hour or two. The data that i need to output is strictly depending on the
I want to run a Django - Celery task with manual transaction management, but it seems that the annotations do not stack.
So far, I\'ve been working only with python manage.py celeryd, starting it like开发者_C百科 this:
I am developing a django app and it will utilize the Celery notification system. To use Celery I need the install the RabbitMQ server. I am trying to install it using homebrew. So I just:
I am trying to set up Django with Celery so I can send bulk emails in the background. I am a little confused about how the different components play into Celery. Do I need to use RabbitMQ? Can I just
I started playing around with Celery and RabbitMQ this morning and defined some basic tasks to see how the performance will improve on my server.
I used ugettext in one of my tasks. I had edited the po file. But it didn\'t work. Does anyone know why? thanks!