Best way to perform a full text search in MongoDB and Mongoose

前端 未结 2 2061
隐瞒了意图╮
隐瞒了意图╮ 2020-12-12 09:17

I\'m searching on Google since days and I tried many things but I still can not perform a good full text search on my user collection.

I tried ElasticSearch but was

2条回答
  •  既然无缘
    2020-12-12 09:54

    For search query you can use Elasticsearch plugin. In Elasticsearch you can make your own custom search query for searching any particular text and string with the specified time duration in the real time.

    But before that you have to make indexing of your json docs residing in MongoDB. You have to connect MongoDB with Elasticsearch server.then using the river functionality of Elasticsearch you have to make the indexing in Elasticsearch server of your data, then only you can make your custom query for searching.

提交回复
热议问题