2

根据 Datastore 文档,实体组的最大写入速率为每秒 1 个。

https://cloud.google.com/datastore/docs/concepts/limits

我想知道这种情况是否计入该限制作为单个或多个查询。

Stack Overflow 上也有类似的问题——但它们似乎并不能证实你能做什么。

const datastore = require('@google-cloud/datastore')();

const key1 = datastore.key(['Users', 1, 'Comments']);

const comment1 = {
    userId: 1,
    commentBody: '...',
    ts: new Date(),
};

const key2 = datastore.key(['Users', 2, 'Comments']);

const comment2 = {
    userId: 2,
    commentBody: '...',
    ts: new Date(),
};

datastore.save({
    key: key1,
    data: comment1
}, (err) => {
    //
});

datastore.save({
    key: key2,
    data: comment2
}, (err) => {
    //
});
4

1 回答 1

0

在此处查看您的实体,您有 2 个实体组:

  1. 用户/1
  2. 用户/2

然后保存 2 个评论实体,每个实体组下都有一个。这算作每个实体组 1 次写入。

于 2017-04-12T14:25:29.103 回答