On 7/23/07, Paul Böhm <[EMAIL PROTECTED]> wrote:
> How do you get data to and from them ? I don't need scheduled tasks,
> but background tasks.
>
> The jobs are running just a few seconds and i need quick response

We have a combination of scheduled (cron-like) and asynchronous
(background) tasks, so we've taken to using the database as our
communication protocol.

This allows us to handle both needs with a single solution.  It also
allows us to have a cluster of queue-runners in the same manner as we
have a web server cluster.

It's very low-hassle and very easy to implement.  We're currently
investigating multi-db to allow us to use a separate DB server for
this specific application, but haven't brought it online yet.
Unfortunately, we're not able to share the code at this point in time,
but I would hope to eventually.

 - Ben

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to