I pull feeds and save their articles into the datastore. I parse the feed
and create "post" objects and then save them all in one call as such:

     db.put(posts)

However, sometimes I get a RequestTooLargeError exception. What's the best
way to handle it, knowing that sometimes a feed has a few number of posts
but they are very big ones, and sometimes it's a big number of small posts.
Is there an easy way to figure out what big each instance is so I can
calculate the total size before saving and chunk them accordingly?

Waleed

-- 
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.

Reply via email to