开发者

Multiple writes in Google App Engine

开发者 https://www.devze.com 2023-02-18 18:48 出处:网络
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?

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])

0

精彩评论

暂无评论...
验证码 换一张
取 消