You might achieve this kind of functionality (and more) using AppRocket http://code.google.com/p/approcket
Although it currently doesn't have a generic queuing service built in, it's very easy to simulate. Just setup an entity in AE for asynchronous tasks, for example QueueTask and have it replicated to a MySql table.Then on hosted system you can have a simple batch process that scans the table for new records and performs the neccessary actions. This is one way I personally levarage AR functionality. Another advantage is that you can actually update data in MySQL and it will be replicated back to AE automatically. This would let you forget about AE request constrains. Kaspars --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
