gpt4 book ai didi

python - google app engine 将大数据放入数据存储区的有效方法

转载 作者:太空宇宙 更新时间:2023-11-04 10:45:02 25 4
gpt4 key购买 nike

我想将数据存储在父子层次结构中。我想使用 ndb.put_multi 函数来这样做。问题是在使用 put multi 存储父模型后,我将如何获得父模型的相应键。请提出解决方案

最佳答案

如果您已经将 put_multi 用作父键,那么您已经有了它们。

例如

list_of_parent_keys = ndb.put_multi(list_of_entities)
child_keys = []
for parent_key in list_of_parent_keys:
child_key = ndb.Key(Parent, parent_key, Child, child_key)
child_keys.append(child_key)

关于python - google app engine 将大数据放入数据存储区的有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18014091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com