6

我正在使用 mongo db nodejs 和 mongoose。

我想使用 mongodb 新文本搜索。

尝试像 aaronheckmann 建议的那样使用 mongoose-text-search,但我不断收到错误消息。

var mongoose = require("mongoose");
var Schema  = mongoose.Schema;
var ObjectId = Schema.ObjectId;
var Items = new Schema({
   type            : { type : String , default:""},
    color           : { type : [String] , default:""},
   category_A      : { type : String , default:""},
    category_B      : { type : String , default:""},
    category_C      : { type : String , default:""},
});
var textSearch = require("mongoose-text-search");
Items.plugin(textSearch);
var ItemModel = mongoose.model('Item', Items);
Items.index({
    type            :"text",
    color           :"text",
   category_A      :"text",
    category_B      :"text",
    category_C      :"text"
},
   {
        name: "best_match_index",
       weights: {
            type: 5,  
            color:   4,
      }
    }
)
ItemModel.textSearch('D', function (err, output) {
    if (err) 
    console.log(err);
    else
    console.log(output)
})

运行时,我得到:

no text index for: db.items

谢谢!

4

3 回答 3

12

在将架构注册为模型之前,您必须将插件添加到架构中。

更新

同样,您需要在注册模型之前在模式上定义索引。所以重新排序你的代码部分,如下所示:

var textSearch = require("mongoose-text-search");
Items.plugin(textSearch);
Items.index({
    type            :"text",
    color           :"text",
    category_A      :"text",
    category_B      :"text",
    category_C      :"text"
}, {
    name: "best_match_index",
    weights: {
        type: 5,  
        color: 4
    }
});
var ItemModel = mongoose.model('Item', Items);

请注意,您还需要通过mongoose.connect我在任何地方都看不到的调用将猫鼬连接到数据库,但我假设您在此代码范围之外执行此操作。这是我用来确认此工作的完整代码:

var mongoose = require("mongoose");
var Schema  = mongoose.Schema;
var ObjectId = Schema.ObjectId;
var Items = new Schema({
    type            : { type : String , default:""},
    color           : { type : [String] , default:""},
    category_A      : { type : String , default:""},
    category_B      : { type : String , default:""},
    category_C      : { type : String , default:""},
});
var textSearch = require("mongoose-text-search");
Items.plugin(textSearch);
Items.index({
    type            :"text",
    color           :"text",
    category_A      :"text",
    category_B      :"text",
    category_C      :"text"
}, {
    name: "best_match_index",
    weights: {
        type: 5,
        color: 4,
    }
});
var ItemModel = mongoose.model('Item', Items);

mongoose.connect('mongodb://localhost/test', function (err) {
  ItemModel.textSearch('D', function (err, output) {
    if (err)
      console.log(err);
    else
      console.log(output);
    mongoose.disconnect();
  });
});

创建的文本搜索索引在 shell 中如下所示:

test> db.items.getIndexes()
[
  {
    "v": 1,
    "key": {
      "_id": 1
    },
    "ns": "test.items",
    "name": "_id_"
  },
  {
    "v": 1,
    "key": {
      "_fts": "text",
      "_ftsx": 1
    },
    "ns": "test.items",
    "name": "best_match_index",
    "weights": {
      "category_A": 1,
      "category_B": 1,
      "category_C": 1,
      "color": 4,
      "type": 5
    },
    "background": true,
    "safe": null,
    "default_language": "english",
    "language_override": "language",
    "textIndexVersion": 1
  }
]
于 2013-04-27T14:41:25.387 回答
5
npm install mongoose-text-search

https://github.com/aheckmann/mongoose-text-search

发现其他猫鼬功能的好地方是http://plugins.mongoosejs.com

于 2013-04-15T01:35:57.100 回答
2

据我所知,大多数驱动程序还没有实现text搜索命令/函数,所以调用它的唯一方法是使用该runCommand函数。

不过,您需要确保首先在数据库上启用它(并且显然创建一个文本索引)。

http://docs.mongodb.org/manual/tutorial/enable-text-search/

或运行时

db.adminCommand( { setParameter : 1, textSearchEnabled : true } )
于 2013-04-13T22:29:57.823 回答