Re: Alternatives to celery

2012-01-16 Thread Tom Evans
On Mon, Jan 16, 2012 at 3:05 PM, bryan hunt wrote: > Gearman only supports a MySql backend for persistent queues - it > doesn't support a real message queue like Rabbitmq. > > > > On Jan 16, 10:33 am, Cherian Thomas wrote: >> Second Arun’s suggestion on gearman. Pretty solid too. Gearman also wo

Re: Alternatives to celery

2012-01-16 Thread Cherian Thomas
Gearman supports sqlite. Gearman is for jobs, not just data. Regards, Cherian On Mon, Jan 16, 2012 at 8:35 PM, bryan hunt wrote: > Gearman only supports a MySql backend for persistent queues - it > doesn't support a real message queue like Rabbitmq. > > > > On Jan 16, 10:33 am, Cherian Thomas

Re: Alternatives to celery

2012-01-16 Thread bryan hunt
Gearman only supports a MySql backend for persistent queues - it doesn't support a real message queue like Rabbitmq. On Jan 16, 10:33 am, Cherian Thomas wrote: > Second Arun’s suggestion on gearman. Pretty solid too. > > Regards, > Cherian > > > > > > > > On Mon, Jan 16, 2012 at 3:52 PM, Alec T

Re: Alternatives to celery

2012-01-16 Thread Cherian Thomas
Second Arun’s suggestion on gearman. Pretty solid too. Regards, Cherian On Mon, Jan 16, 2012 at 3:52 PM, Alec Taylor wrote: > Looking for an alternative to celery? — Have you considered carrot? > > :P > > -- > You received this message because you are subscribed to the Google Groups > "Djan

Re: Alternatives to celery

2012-01-16 Thread Alec Taylor
Looking for an alternative to celery? — Have you considered carrot? :P -- 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 django-use

Re: Alternatives to celery

2012-01-16 Thread Markus Gattol
Have a look at https://github.com/dmgctrl/django-ztask It's based on ZeroMQ, you can schedule and background tasks in various ways, same machine or even across the network. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussio

Re: Alternatives to celery

2012-01-15 Thread Arun P
@Isaac, How about gearman? Gearman seems to support multiple projects through one gearman server. On Mon, Jan 16, 2012 at 1:43 AM, Isaac XXX wrote: > Hi folks, > > I need a solution to create cron-like jobs into my django projects. I've a > server with several projects. > > I've testes celery,

Re: Alternatives to celery

2012-01-15 Thread Carlos Daniel Ruvalcaba Valenzuela
Hi, so far I have been using one celery instance per project and seems to work ok, I have setup scripts (fabric) to start and reload the project celery server (via manage.py celeryd), some notes en backends: * Shared redis instance does not seem to work well, unless you use different db numbers. *

Alternatives to celery

2012-01-15 Thread Isaac XXX
Hi folks, I need a solution to create cron-like jobs into my django projects. I've a server with several projects. I've testes celery, and it seems to work well with only 1 project, but when I need to set up several projects with celery support, I can't figure how to do it (because daemoniza