Full-text search with Meteor.js and MongoDB

后端 未结 4 1111
[愿得一人]
[愿得一人] 2021-02-06 05:32

I am experimenting with Meteor.js and looking for a full-text search engine that can run on Meteor/MongoDB server. It seems that Meteor has not developed this feature.

I

4条回答
  •  说谎
    说谎 (楼主)
    2021-02-06 06:11

    MongoDB 2.4 will have a full text search in it. Guide can be found here.

    If you are prepared to run the development releases you can download MongoDB 2.3 now - it contains text search.

    Update: MongoDB 2.4 has been released. Text search is described as Beta.

    The guide for text search is here and the mongod must be run like this

    mongod --setParameter textSearchEnabled=true
    

提交回复
热议问题