我正在尝试使用Meteor.js,并寻找可以在Meteor/MongoDB服务器上运行的全文本搜索引擎。看来Meteor尚未开发此功能。
我想知道是否存在将全文搜索添加到Meteor应用程序的解决方案。
我唯一能找到的是MongoLantern,它具有node.js API。我应该如何将MongoLantern添加到我的Meteor应用程序中?
最佳答案
MongoDB 2.4将在其中进行全文搜索。 Guide can be found here.
如果您准备运行开发版本,则可以下载MongoDB 2.3 now-包含文本搜索。
更新: MongoDB 2.4已发布。文字搜索被称为Beta。
text search is here和 mongod
must be run like this指南
mongod --setParameter textSearchEnabled=true
关于mongodb - 使用Meteor.js和MongoDB进行全文搜索,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14567856/