gpt4 book ai didi

python-2.7 - GAE ndb 设计、性能和重复属性的使用

转载 作者:太空宇宙 更新时间:2023-11-03 15:18:51 25 4
gpt4 key购买 nike

假设我有一个图片库,一张图片可能有超过 10 万粉丝。哪种 ndb 设计更高效?

class picture(ndb.model):
fanIds = ndb.StringProperty(repeated=True)
... [other picture properties]

class picture(ndb.model):
... [other picture properties]

class fan(ndb.model):
pictureId = StringProperty()
fanId = StringProperty()

您可以添加到 ndb 重复属性的项目数量是否有任何限制?在重复属性中存储大量项目是否会影响性能?如果使用重复属性效率较低,那么它们的预期用途是什么?

最佳答案

如果您有超过 100-1000 个值,请不要使用重复的属性。 (1000 可能已经在插入它。)它们不是为这种用途而设计的。

关于python-2.7 - GAE ndb 设计、性能和重复属性的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15377119/

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