Google App Engine (JDO) 中 ID 的键或长整型

发布于 2024-10-22 10:32:42 字数 116 浏览 1 评论 0 原文

我正在使用 JDO 和 Google App Engine 进行存储,我想知道 Key 对象和 Long for id 之间有什么区别?

我发现长 ID 更实用,我错过了什么吗?

谢谢。

I'm using JDO with Google App Engine for storage and I'm wondering what is the difference between the Key object and Long for id?

I find the long ID more practical, am I missing anything?

Thanks.

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

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

发布评论

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

评论(1

假面具 2024-10-29 10:32:42

密钥 是全局唯一标识符,它唯一标识整个应用程序引擎中的实体。它由两部分组成:

  1. 描述实体所属应用程序的路径、任何祖先键以及实体的种类。
  2. ID(长整型)密钥名称(字符串)

无论您选择使用长字符串还是字符串作为第二部分,都有一个 Key 对象与存储在数据存储中的每个实体相关联。

A Key is globally uniquely identifier which uniques identifies an entity across all of app engine. It consists of two pieces:

  1. A path describing what app the entity belongs to, any ancestor keys, and the entity's kind.
  2. An ID (a long) or a key name (a string).

Regardless of whether you choose to use a long or a string as the second piece, there is a Key object is associated with every entity stored in the datastore.

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