[google-appengine] Re: How can I add Timer to my GAE application?

2008-11-18 Thread [EMAIL PROTECTED]
Just be aware, Cron is extremely new and is still developmental. If you have problems please report any issues at the gaeutilities project site. http://code.google.com/p/gaeutilities/ I did my best to test all possible cron syntax to make sure it works but rewriting that in python was a bit of a

[google-appengine] Re: How can I add Timer to my GAE application?

2008-11-17 Thread A . TNG
On Mon, Nov 17, 2008 at 11:48 AM, Alex Cheng [EMAIL PROTECTED] wrote: I want to add a timer to my GAE application, so I can execute certain logic at given interval. I tried python's Timer object (http:// www.python.org/doc/2.5.2/lib/timer-objects.html), but it doesn't seem to work properly.

[google-appengine] Re: How can I add Timer to my GAE application?

2008-11-17 Thread Maciej Pietrzak
On 17 Lis, 16:09, A.TNG [EMAIL PROTECTED] wrote: On Mon, Nov 17, 2008 at 11:48 AM, Alex Cheng [EMAIL PROTECTED] wrote: I want to add a timer to my GAE application, so I can execute certain logic at given interval. I tried python's Timer object (http://

[google-appengine] Re: How can I add Timer to my GAE application?

2008-11-17 Thread Alex Cheng
I used Cron from gaeutilities and it works fine for me. Finally I can remove a damn button from my page since the user doesn't need to manually click it to refresh the page but Cron will do it in the background. That's really cool! On Nov 18, 4:20 am, Maciej Pietrzak [EMAIL PROTECTED] wrote:

[google-appengine] Re: How can I add Timer to my GAE application?

2008-11-16 Thread Alexander Kojevnikov
I want to add a timer to my GAE application, so I can execute certain logic at given interval. I tried python's Timer object (http://www.python.org/doc/2.5.2/lib/timer-objects.html), but it doesn't seem to work properly. You cannot use the timer, create threads or spawn processes. See