Multiple writes in Google App Engine
In php i could make very long SQL statement to write a lot of data in one db call.
Is there something similar in Google App Engine?
Can i build request somehow and then do just one mydata.put()
开发者_开发技巧
db.put can accept a list, so you can do db.put([entity1, entity2, entity3])
精彩评论