Re: Don't make me wait!

2006-07-09 Thread Ian Holsman
I actually started writing a queueing system a while back (and lost it during a hard drive crash) I recommend you look at hugo's stuff.jobcontrol package https:// simon.bofh.ms/django-projects/stuff/trunk/jobcontrol/ as a base. regards Ian On 09/07/2006, at 6:07 PM, wiz wrote: > > On

Re: Don't make me wait!

2006-07-09 Thread wiz
On 7/6/06, Tyson Tate <[EMAIL PROTECTED]> wrote: > > Why not put the messages in the database and read it from other side? > I'm not sure I understand what you mean. Do you mean that I should > take the API call responses and read them from the user-side with > AJAX? I hope that's not what you

Re: Don't make me wait!

2006-07-06 Thread Tyson Tate
On Jul 6, 2006, at 10:07 AM, mamcxyz wrote: > Why not put the messages in the database and read it from other side? I'm not sure I understand what you mean. Do you mean that I should take the API call responses and read them from the user-side with AJAX? I hope that's not what you meant

Re: Don't make me wait!

2006-07-06 Thread mamcxyz
Why not put the messages in the database and read it from other side? --~--~-~--~~~---~--~~ 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

Re: Don't make me wait!

2006-07-06 Thread Tyson Tate
On Jul 6, 2006, at 12:07 AM, Malcolm Tredinnick wrote: > This sort of problem is why, when you brought this solution up last > month, a couple of us were still recommending doing this with cron or > some other system-level process, rather than hooking it into Django: a > transient process for

Re: Don't make me wait!

2006-07-06 Thread Malcolm Tredinnick
On Wed, 2006-07-05 at 23:39 -0700, Tyson Tate wrote: > In one of my Django projects, I use the dispatcher and signals to > notify various apps that the front page has been viewed. Some of > these apps run a method on the raising of this signal to see if it's > been more than X minutes since

Re: Don't make me wait!

2006-07-06 Thread wiz
> Sometimes, the API calls can take some time (Ma.gnolia, I'm talking > to you!), which ends up making the user visiting my front page wait > until all the API calls are done running before the front page loads. > Is there a way to avoid this by executing the synchronization methods > in another

Don't make me wait!

2006-07-06 Thread Tyson Tate
In one of my Django projects, I use the dispatcher and signals to notify various apps that the front page has been viewed. Some of these apps run a method on the raising of this signal to see if it's been more than X minutes since the last time the method has been run. If the method was