Re: [google-appengine] Re: Taskqueue payload

2011-01-05 Thread djidjadji
If you use the deferred API

from google.appengine.ext import deferred

The storing of the task arguments in a datastore object is done by the API.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Taskqueue payload

2011-01-05 Thread GAEfan
Great responses.  Thanks Tim and djidjadji.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Taskqueue payload

2011-01-04 Thread Tim Hoffman
Hi

Stick the email in a blob or some other property somewhere, then run the 
task with the key to the blob, then your payload will be under 10K.

The payload refers to the marshalled data being passed to the task as an 
argument, not the data it uses when running.

Rgds

Tim

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.