Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 MongoDB 的文本搜索,到目前为止效果很好。但是,我们还想指定结果的顺序,例如:
db.items.runCommand("text", {search: "\"test item\"", "$orderby" : { votes : 1 }});
这会执行,但它不按票数排序,它仍然按分数排序。
有人知道该怎么做吗?
谢谢!
MongoDB 的"text"命令不支持自定义排序,因此您必须votes在自己的代码中对结果进行排序。
"text"
votes
此处列出了支持的选项。