私はMongoDBと、それが私にとって分析にどのように役立つかを学ぼうとしています。私は彼らのウェブサイトで利用可能なJavaScriptコンソールで遊んでいて、次のアイテムを作成しました。
{"title": "Cool", "_id": {"$oid": "503e4dc0cc93742e0d0ccad3"}, "tags": ["twenty", "sixty"]}
{"title": "Other", "_id": {"$oid": "503e4e5bcc93742e0d0ccad4"}, "tags": ["ten", "thirty"]}
{"title": "Ouch", "_id": {"$oid": "503e4e72cc93742e0d0ccad5"}, "tags": ["twenty", "seventy"]}
{"title": "Final", "_id": {"$oid": "503e4e72cc93742e0d0ccad6"}, "tags": ["sixty", "seventy"]}
私がやりたいのはクエリですので、これらすべてのオブジェクトの一意のタグのリストを取得します。結果は次のようになります。
["ten", "twenty", "thirty", "sixty", "seventy"]
これを照会するにはどうすればよいですか?私はdistinct()
それを試みていますが、呼び出しは常にクエリを実行せずに失敗します。