我试图提供一个API来搜索MongoDB集合的各种标准,包括全文搜索。由于这是一个Scala项目(在Play FWIW中),我正在使用Salat,这是Casbah周围的抽象。
以下代码可以正常使用:
MySalatDao
.find(MongoDBObject("$text" -> MongoDBObject("$search" -> "Vidya")), MongoDBObject("score" -> MongoDBObject("$meta" -> "textScore")))
.sort(orderBy = MongoDBObject("score" -> MongoDBObject("$meta" -> "textScore")))
但是,我最终需要搜索多个条件并按其全文搜索分数对结果进行排序,因此我探索了Casbah的MongoDBObject query builder functionality(底部)。
所以我试图像这样复制上面的内容:
val builder = MongoDBObject.newBuilder
builder += "$text" -> MongoDBObject("$search" -> "Vidya")
builder += "score" -> MongoDBObject("$meta" -> "textScore")
MySalatDao
.find(a.result())
.sort(orderBy = MongoDBObject("score" -> MongoDBObject("$meta" -> "textScore")))
这给出了以下例外:
com.mongodb.MongoException: Can't canonicalize query: BadValue must have $meta projection for all $meta sort keys
at com.mongodb.QueryResultIterator.throwOnQueryFailure(QueryResultIterator.java:214)
at com.mongodb.QueryResultIterator.init(QueryResultIterator.java:198)
at com.mongodb.QueryResultIterator.initFromQueryResponse(QueryResultIterator.java:176)
at com.mongodb.QueryResultIterator.<init>(QueryResultIterator.java:64)
at com.mongodb.DBCollectionImpl.find(DBCollectionImpl.java:86)
at com.mongodb.DBCollectionImpl.find(DBCollectionImpl.java:66)
.
.
我之前看到过这个错误 - 当时我没有在查询中包含score
组件。但是一旦我这样做了,它就起作用了(如第一个代码片段所示),我认为查询构建器的版本是等效的。
就此而言,致电builder.result().toString()
会产生这样的结果:
{ "$text" : { "$search" : "Vidya"} , "score" : { "$meta" : "textScore"}}
任何有关让查询构建器为我工作的帮助都将非常感激。
答案 0 :(得分:5)
在您的工作查询中,您为“查询谓词”传递一个DBObject,为“字段”或“投影”传递第二个DBObject - find获取第二个可选参数,指示要返回的字段,如果是$ text搜索,有一个特殊的投影字段$ meta,它允许您取回匹配文档的分数,以便您可以对其进行排序。
在构建器尝试中,您将投影DBObject添加到查询条件中,并且在您将分数组件省略为要查找的第二个参数时,您会看到相同的错误。
添加MongoDBObject("score" -> MongoDBObject("$meta" -> "textScore"))
作为第二个参数,以便像以前一样查找,并使用builder
来组合多个查询条件。
在简单的JSON术语中,您正在调用find:
db.coll.find( { "$text" : { "$search" : "Vidya"} , "score" : { "$meta" : "textScore"}} )
当你真的想这样称呼它时:
db.coll.find( { "$text" : { "$search" : "Vidya"} } , { "score" : { "$meta" : "textScore"}} )