この形式でデータを保存したい。
{
"_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 は Multikey Indexing をサポートしていますか?
どうすれば mongoid を使用して目的のフォーマットと動作を実現できますか?