Re: Python/Django AMQP?

2011-02-28 Thread Nolan Brubaker
+! for Celery, though I haven't used it with django-celery yet. Soon will, though. On Feb 24, 2011, at 11:58 AM, Brian Bouterse wrote: > +1 for Celery and django-celery. I use them also. > > On Thu, Feb 24, 2011 at 9:07 AM, Shawn Milochik wrote: > +1 on Celery and

Re: Python/Django AMQP?

2011-02-25 Thread Tom Evans
Note that zeromq is not an AMQP compliant messaging queue. Some benefits of directly using AMQP are: You can cater for use cases that carrot doesn't consider - carrot is targeted squarely at handling tasks asynchronously, amqp allows many more use cases, pub/sub, logging event monitoring etc. You

Re: Python/Django AMQP?

2011-02-25 Thread CrabbyPete
I just started looking at 0MQ it looks interesting http://zguide.zeromq.org/ On Feb 24, 11:58 am, Brian Bouterse wrote: > +1 for Celery and django-celery.  I use them also. > > On Thu, Feb 24, 2011 at 9:07 AM, Shawn Milochik wrote: > > +1 on Celery and

Re: Python/Django AMQP?

2011-02-24 Thread Brian Bouterse
+1 for Celery and django-celery. I use them also. On Thu, Feb 24, 2011 at 9:07 AM, Shawn Milochik wrote: > +1 on Celery and django-celery. I use them both. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post

Re: Python/Django AMQP?

2011-02-24 Thread Shawn Milochik
+1 on Celery and django-celery. I use them both. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to

Re: Python/Django AMQP?

2011-02-24 Thread Tom Evans
On Thu, Feb 24, 2011 at 1:29 PM, ju wrote: > I have a django web application which creates and saves jobs in a database. > For every job I have to send email and export data to another system. I want > to make it asynchronously. > > What is the recommended way to do it? >

Python/Django AMQP?

2011-02-24 Thread ju
I have a django web application which creates and saves jobs in a database. For every job I have to send email and export data to another system. I want to make it asynchronously. What is the recommended way to do it? - It have to be reliable (no jobs missed). - There have to be easy