我有这样的架构设置:
{
"_id": ObjectId("5130ea935b51eafc13000032"),
"items": [
{
"id": ???,
"title": "yes"
},
{
"id": ???,
"title": "no"
}
]
}
在整个集合中为所有子文档分配唯一 ID 的最佳方法是什么?
我应该使用MongoId()对象吗?PHP 的uniqid()函数?一个简单的增量?... 为什么?