将新对象添加到 GAE 数据存储时,ID 是否总是增加?
我正在构建一个客户端/服务器应用程序,我想在其中同步数据。我正在考虑在查询中包含本地客户端数据库中最大的键,以便服务器可以获取在该实体之后添加的所有实体(使用 key >largest_local_key)。
- 我能否确定 Google App Engine 始终会增加新实体的 ID?
- 这是实现同步的好方法吗?
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).
- Can I be sure that the Google App Engine always increase the ID of new entities?
- Is that a good way to implement synchronization?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,ID 不会单调增加。
考虑基于创建/更新时间戳进行同步。
No, IDs do not increase monotonically.
Consider synchronizing based on a create/update timestamp.