当我将消息插入数据存储区时,我使用消息的序列号创建一个密钥,并与发送消息的用户创建祖先关系。当我尝试使用仅从序列号创建的密钥检索消息时,它失败了。如果我将插入更改为使用仅基于序列号的键,则稍后的检索会成功。
代码方面
这失败了:
贮存:
p_key = ndb.Key(StoredBcastMsg,sendingUser)
c_key = ndb.Key(StoredBcastMsg,prof['seqNum'],parent=p_key)
prof['key']=c_key
StoredBcastMsg(**prof).put()
检索失败
msgToRet=ndb.Key(StoredBcastMsg,seqNum).get() #Fails even though sequence number is there in the store
这成功了:
贮存:
prof['key']=c_key
StoredBcastMsg(**prof).put()
c_key = ndb.Key(StoredBcastMsg,prof['seqNum'])
检索成功:
msgToRet=ndb.Key(StoredBcastMsg,seqNum).get() #Succeeds
这是预期的行为吗?我认为在创建密钥时添加 parent= 标签的唯一区别是创建一个祖先关系,该关系允许有效地回答诸如“给我用户 X 发送的所有消息”之类的查询。