Mongodb:使用reactivemongo执行不区分大小写的排序

时间:2017-05-01 07:11:10

标签: mongodb reactivemongo

为方便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。我找不到任何关于此的文件。

我该如何执行此类查询?

0 个答案:

没有答案