在Google App Engine中,请考虑以下数据存储模型:
class Update(db.Model):
content = db.TextProperty()
date = db.DateTimeProperty()
source = db.StringProperty()
要添加新记录,我会执行以下操作:
db.put(Update(content=..., date=..., source=...))
如果记录尚不存在,如何将记录添加到数据存储区?最有效的方法是什么?