错误在下面的Product.find语句中触发:
var bodyparser = require('body-parser');
var express = require('express');
var status = require('http-status');
var _ = require('underscore');
var mongoose = require('mongoose');
var productSchema = require('./product');
var schema = new mongoose.Schema(productSchema);
schema.index({ name: 'text' });
module.exports = function(wagner) {
var api = express.Router();
api.use(bodyparser.json());
api.get('/product/text/:query', wagner.invoke(function(Product) {
return function(req, res) {
console.log("we are in the get " + req.params.query);
Product.
find(
{ $text : { $search : req.params.query } },
{ score : { $meta: 'textScore' } }).
sort({ score: { $meta : 'textScore' } }).
limit(10).
exec(handleMany.bind(null, 'products', res));
};
}));
return api;
};
function handleMany(property, res, error, result) {
console.log("We are handling the many");
if (error) {
console.log(error);
return res.
status(status.INTERNAL_SERVER_ERROR).
json({ error: error.toString() });
}
var json = {};
json[property] = result;
res.json(json);
}
我正在Windows 10上运行MongoDB 3.4.2。我在MongoDB shell中明确地运行了语句 db.products.ensureIndex({name:“text”}); 时间我没有得到错误。但是,当查询超过2000毫秒时,它仍会间歇性地获得超时错误。我认为我不必在MongoDB shell中显式添加索引,因为我在上面的代码中添加了一个模式索引,但我不确定。
谢谢,
威廉
答案 0 :(得分:2)
我进入MongoDB shell并将索引放在product集合上,如下所示:
db.products.createIndex({name:" text"})
这是我的解决方案,但它确实有效,但我不知道某个地方是否存在导致该解决方案必要的故障。