MongoDB text search and order by

后端 未结 1 1523
遇见更好的自我
遇见更好的自我 2021-01-23 00:48

We\'re using MongoDB\'s text search, which so far is working great. However, we want to also specify an order for the results, such as this:

db.items.runCommand         


        
1条回答
  •  粉色の甜心
    2021-01-23 01:02

    MongoDB's "text" command doesn't support custom sorting so you'd have to sort the results by votes in your own code.

    The supported options are listed here.

    0 讨论(0)
提交回复
热议问题