Barry, I believe your treat each task as a webrequest and at the moment there is a 10K limit ( http://code.google.com/appengine/docs/python/taskqueue/overview.html) on the size of task items. I believe the best course of action is to stash them in memcache (although I am sure you may get instances where it might be removed from memcache) - from what I understand enqueing on to the task queue is a lot faster than storing a temp object in the data store, depending on the reason for you using the queue, persisting the object to the datastore might negate some of its usefulness.
I think some experimentation is needed. Paul 2009/6/19 Barry Hunter <[email protected]> > > Excellent! > > Is there any limits on the 'params' structure in the task queue? > > Can we (should we!?!) pass around really big data via this, or would > it be best stored in memcache (for example) and just the key passed? > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
