我想以这种格式存储数据。
{
"_id": ObjectId(...)
"title": "Grocery Quality"
"comments": [
{ author_id: ObjectId(...)
date: Date(...)
text: "Please expand the cheddar selection." },
{ author_id: ObjectId(...)
date: Date(...)
text: "Please expand the mustard selection." },
{ author_id: ObjectId(...)
date: Date(...)
text: "Please expand the olive selection." }
]
}
我对如何为我的数据实现这种格式感到困惑。
我正在使用 mongoid;Mongoid 支持多键索引吗?
如何使用 mongoid 来实现我想要的格式和行为?