为方便case insensitive sorting
, Mongodb 3.4 提供了Case Insensitive Indexes。我们可以create a index
然后use collation in the query
将该索引用作:
db.fruit.find( { type: "apple" } ).collation( { locale: 'en', strength: 2 } )
我正在使用支持Mongodb 3.4的ReactiveMongo 0.12.2。我需要perform above collation query with reactivemongo
。我找不到任何关于此的文件。
我该如何执行此类查询?