Re: OT: How did you handle asynchronous tasks?

2007-10-16 Thread David Larlet
2007/10/16, Joseph Heck <[EMAIL PROTECTED]>: > > If I'm reading it correctly, the lack of RESTful verbs was your > primary consideration for what the API to the queue service failed to > provide. Is that correct? > Exactly, I try to be as RESTful as I can in my current projects and DQS can be a

Re: OT: How did you handle asynchronous tasks?

2007-10-16 Thread Joseph Heck
On 10/16/07, David Larlet <[EMAIL PROTECTED]> wrote: > 2007/10/15, Joseph Heck <[EMAIL PROTECTED]>: > > > > Hi David, > > > > If you'd be willing to indulge me, why doesn't DQS doesn't fit your > > requirements? I'd love to have some explicit feedback on where it > > could be improved to match

Re: OT: How did you handle asynchronous tasks?

2007-10-16 Thread Jeremy Dunck
On 10/16/07, David Larlet <[EMAIL PROTECTED]> wrote: > * Review some parts of the code, for example use queryset.count() > instead of len(queryset), or change this part: FWIW, doing qs.count() creates a new queryset, then executes it. Doing len(queryset), then queryset[0], the second access of

Re: OT: How did you handle asynchronous tasks?

2007-10-16 Thread David Larlet
2007/10/15, Joseph Heck <[EMAIL PROTECTED]>: > > Hi David, > > If you'd be willing to indulge me, why doesn't DQS doesn't fit your > requirements? I'd love to have some explicit feedback on where it > could be improved to match your needs. And yes, I know there's a LOT > of places where it could

Re: OT: How did you handle asynchronous tasks?

2007-10-15 Thread Joseph Heck
Hi David, If you'd be willing to indulge me, why doesn't DQS doesn't fit your requirements? I'd love to have some explicit feedback on where it could be improved to match your needs. And yes, I know there's a LOT of places where it could be improved... :-) -joe On 10/15/07, David Larlet

Re: OT: How did you handle asynchronous tasks?

2007-10-15 Thread David Larlet
2007/10/15, Jarek Zgoda <[EMAIL PROTECTED]>: > > We started with cron jobs, but when it grew to unmanageable bunch of > scripts, we started thinking on using queuing service (ActiveMQ, > RabbitMQ - something that is compatible with AMQP and/or can be used > with python client). Still no decision,

Re: OT: How did you handle asynchronous tasks?

2007-10-15 Thread Jarek Zgoda
David Larlet napisaƂ(a): > A bit off-topic but I wonder how did you handle asynchronous tasks > like emailing or crawling or put-here-your-secret-asynchronous-service > in your django projects? There are some solutions like django-mailer > but what about a more general (twisted?) queuing

OT: How did you handle asynchronous tasks?

2007-10-14 Thread David Larlet
Hi all, A bit off-topic but I wonder how did you handle asynchronous tasks like emailing or crawling or put-here-your-secret-asynchronous-service in your django projects? There are some solutions like django-mailer but what about a more general (twisted?) queuing service? Any thoughts? Regards,