标签: python google-app-engine google-cloud-datastore
我在gae manpages中看到entity.save()没有记录,但仍然可以使用它。 entity.put()和entity.save()之间有什么区别?是save()永远不会被使用而只会put()代替?
entity.save()
entity.put()
save()
put()
答案 0 :(得分:4)
save只是put的同义词。它在源代码中定义如下:
save
put
save = put
查看save的{{3}}。