ZODB中对象有主键概念吗
我想知道我们是否可以为 ZODB 中存储的所有对象提供唯一标识符
I wanted to know if we can have a unique identifier for all objects that are stored in ZODB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ZODB 中存储的每个对象都有一个唯一的 ID,在对象注册后可以通过其 _p_oid 属性进行访问:
关于主键的常见注意事项适用 - 如果您需要一个唯一标识符,即使您需要,也可以继续使用该标识符将对象导出到不同的数据库时,最好使用您自己管理的 uuid。 Python 有一个 uuid 模块(在 Python 2.6 的 stdlib 中)可以生成 uuid。
Each object stored in the ZODB does have a unique ID, accessible as its _p_oid attribute after the object has been registered:
The usual caveats about primary keys apply -- if you need a unique identifier that you can continue to use even if you need to export your objects to a different database, you're better off using a uuid that you manage yourself. Python has a uuid module (in the stdlib as of Python 2.6) which can generate uuids.