App Engine:类似 prefetch_refprops 的函数,用于解析键列表
在处理 ReferenceProperties 时,我经常使用名为 prefetch_reprops
的函数来有效地解析引用。但是,我目前正在处理一个使用 db.Key 实例列表的模型。
有人有类似 prefetch_refprops 的函数来处理键列表吗?
When dealing with ReferenceProperties I often make use a function called prefetch_reprops
to efficiently resolve references. However, I am currently dealing with a model that makes use of a list of db.Key
instances.
Does anyone have a prefetch_refprops
-like function for dealing with lists of keys?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在键列表上调用
db.get
即可,与prefetch_refprops
函数完全相同。Just call
db.get
on the list of keys, exactly as theprefetch_refprops
function does.