I'm currently trying to figure out the best way to send batches of emails using tasks. There are three ways I can imagine doing it:
1. Enqueue a task passing it a list of addressees, and the task processes the first one, and enqueues a task passing it the rest 2. Enqueue a task passing it the whole list, and the task processes N addresses, and enqueues a task passing it the rest 3. Enqueue a task passing it the whole list, task enqueues another task with all items except first N items, and processes the first N items after that (which I guess would imagine to parallel processing). How would you do it? -- Branko Vukelić [email protected] Lead Developer Herd Hound (tm) - Travel that doesn't bite www.herdhound.com -- 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.
