将新对象添加到 GAE 数据存储时,ID 是否总是增加?

发布于 2024-11-28 15:51:45 字数 212 浏览 1 评论 0原文

我正在构建一个客户端/服务器应用程序,我想在其中同步数据。我正在考虑在查询中包含本地客户端数据库中最大的键,以便服务器可以获取在该实体之后添加的所有实体(使用 key >largest_local_key)。

  1. 我能否确定 Google App Engine 始终会增加新实体的 ID?
  2. 这是实现同步的好方法吗?

I'm building an client/server-app where I want to sync data. I'm thinking about including the largest key from the local client database in the query so the server can fetch all entities added after that entity (with key > largest_local_key).

  1. Can I be sure that the Google App Engine always increase the ID of new entities?
  2. Is that a good way to implement synchronization?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〃温暖了心ぐ 2024-12-05 15:51:45

不,ID 不会单调增加。

考虑基于创建/更新时间戳进行同步。

No, IDs do not increase monotonically.

Consider synchronizing based on a create/update timestamp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文