创建它的@classmethod中的实体的更新不能可靠地保留在数据存储区中。
我的创建方法如下。参数是要保留的对象。
@classmethod
def create(cls, obj):
"""Factory method for a new system entity using an System instance. Returns a System object (representation) including the meta_key."""
if isinstance(obj, System):
pass
else:
raise Exception('Object is not of type System.')
#check for duplicates
q = dbSystem.all(keys_only=True)
q.filter('meta_guid = ', obj.meta_guid)
if q.get(): #match exists already
raise Exception('dbSystem with this meta_guid already exists. Cannot create.')
# store stub so we can get the key
act = cls(
meta_status = obj.meta_status,
meta_type = obj.meta_type,
meta_guid = obj.meta_guid,
json = None,
lastupdated=datetime.datetime.now())
act.put()
# get the key for the datastore entity and add it to the representation
newkey = str(act.key())
# update our representation
obj.meta_key = newkey
# store the representation
act.json = jsonpickle.encode(obj)
act.put()
return(obj) #return the representation
我的unittest测试确认返回的对象有一个meta_key,并且关联实体的json不是none:
self.assertIsNotNone(systemmodel.dbSystem().get(s.meta_key).json) #json is not empty
但是,在开发服务器上运行我的应用程序时,我发现稍后检索此实体时,json字段间歇性地为NULL。
我花了一些时间研究数据存储模型,试图找到可以解释不一致结果的东西,没有运气。我在Google代码中找到了model class和非常好的overview of the App Engine datastore两个关键来源。
任何人都可以确认对创建它的@classmethod中的实体的更新是否应该被认为是可靠的?有没有更好的方法来持久化对象的表示?
答案 0 :(得分:2)
问题可能就在这一行:
q = dbSystem.all(keys_only=True)
你还没有说dbSystem
是什么,但是如果它是一个app引擎查询,那么你不能保证得到一个对象的最新版本,你可以得到一个旧版本。
相反,您应该通过其键获取对象,这将保证您获得最新版本。像这样:
q = dbSystem.get(obj.key())
查看应用引擎文档以获取按键获取对象。