Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a big fan of Celery for executing scheduled tasks in Django. I am now using Symfony 2 and see that it is almost similar to Django framework.

I wonder if there is something similar to Celery in Symfony for scheduling task queues.

share|improve this question
Which message broker are you using? – tigrang Aug 18 '12 at 6:51
I don't know if we can use message broker with symfony? can we? – user172409255 Aug 18 '12 at 13:45
You can use Celery and webhook tasks, this way you expose your tasks as a web page in PHP and the worker then calls the URLs asynchronously: docs.celeryproject.org/en/latest/userguide/remote-tasks.html – asksol Aug 18 '12 at 14:06

1 Answer

Celery is providing a simple layer to use messaging. It makes the task of building async services easy. Interestingly the concept is not new. It is already available in form of standard protocol like AMQP. Documentation available at

http://php.net/manual/en/book.amqp.php

Although I can't vouch for it but potentially you could hookup PHP and Python code as publisher and subscriber, thus using Celery for doing the task while PHP code could issue it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.