38

我正在考虑向 Meteor 应用程序添加全文搜索。我知道 MongoDB 现在支持此功能,但我对实现有一些疑问:

  • textSearchEnabled=true在 Meteor 应用程序中启用文本搜索功能 ( ) 的最佳方式是什么?
  • 有没有办法db.collection.ensureIndex()从您的应用程序中添加索引()?
  • 如何db.quotes.runCommand( "text", { search: "TOMORROW" } )在 Meteor 应用程序中运行 Mongo 命令(即)?

因为我的目标是向Telescope添加搜索,所以我正在寻找一种“即插即用”的实现,它需要最少的命令行魔法,甚至可以在 Heroku 或 *.meteor.com 上工作。

4

2 回答 2

27

无需编辑任何 Meteor 代码的最简单方法是使用您自己的 mongodb。你mongodb.conf应该看起来像这样(在 Arch Linux 上它位于/etc/mongodb.conf

bind_ip = 127.0.0.1
quiet = true
dbpath = /var/lib/mongodb
logpath = /var/log/mongodb/mongod.log
logappend = true
setParameter = textSearchEnabled=true

关键行是setParameter = textSearchEnabled=true,正如它所说,它启用了文本搜索。

启动mongod_

通过指定环境变量告诉流星使用你mongod自己的。MONGO_URL

MONGO_URL="mongodb://localhost:27017/meteor" meteor

现在说你有一个名为Dinosaurs声明的集合collections/dinosaurs.js

Dinosaurs = new Meteor.Collection('dinosaurs');

要为集合创建文本索引,请创建一个文件server/indexes.js

Meteor.startUp(function () {
    search_index_name = 'whatever_you_want_to_call_it_less_than_128_characters'

    // Remove old indexes as you can only have one text index and if you add 
    // more fields to your index then you will need to recreate it.
    Dinosaurs._dropIndex(search_index_name);

    Dinosaurs._ensureIndex({
        species: 'text',
        favouriteFood: 'text'
    }, {
        name: search_index_name
    });
});

然后您可以通过 公开搜索Meteor.method,例如在文件中server/lib/search_dinosaurs.js

// Actual text search function
_searchDinosaurs = function (searchText) {
    var Future = Npm.require('fibers/future');
    var future = new Future();
    Meteor._RemoteCollectionDriver.mongo.db.executeDbCommand({
        text: 'dinosaurs',
        search: searchText,
        project: {
          id: 1 // Only take the ids
        }
     }
     , function(error, results) {
        if (results && results.documents[0].ok === 1) {
            future.ret(results.documents[0].results);
        }
        else {
            future.ret('');
        }
    });
    return future.wait();
};

// Helper that extracts the ids from the search results
searchDinosaurs = function (searchText) {
    if (searchText && searchText !== '') {
        var searchResults = _searchEnquiries(searchText);
        var ids = [];
        for (var i = 0; i < searchResults.length; i++) {
            ids.push(searchResults[i].obj._id);
        }
        return ids;
    }
};

然后您可以仅发布在“server/publications.js”中搜索过的文档

Meteor.publish('dinosaurs', function(searchText) {
    var doc = {};
    var dinosaurIds = searchDinosaurs(searchText);
    if (dinosaurIds) {
        doc._id = {
            $in: dinosaurIds
        };
    }
    return Dinosaurs.find(doc);
});

客户端订阅看起来像这样client/main.js

Meteor.subscribe('dinosaurs', Session.get('searchQuery'));

Timo Brinkmann的道具,他的音乐爬虫项目是大部分知识的来源。

于 2013-08-15T17:55:51.570 回答
2

要创建一个文本索引并尝试像这样添加我希望这样如果仍然有问题评论会很有用

来自docs.mongodb.org


将标量索引字段附加到文本索引,如下例所示,它在用户名上指定升序索引键:

db.collection.ensureIndex( { comments: "text",
                             username: 1 } )

警告您不能包含多键索引字段或地理空间索引字段。

使用文本中的 project 选项仅返回索引中的字段,如下所示:

db.quotes.runCommand( "text", { search: "tomorrow",
                                project: { username: 1,
                                           _id: 0
                                         }
                              }
                    )

注意:默认情况下,_id 字段包含在结果集中。由于示例索引不包含 _id 字段,因此您必须在项目文档中明确排除该字段。

于 2013-07-29T14:29:27.870 回答