如何解决 - “太多文本索引...” - mongodb错误?

时间:2013-08-22 16:16:38

标签: javascript mongodb indexing full-text-search

获取此错误但不知道原因,以下是处理 mongodb 全文搜索的功能片段:

...
db.collection.ensureIndex({ description: 'text' }, { name: 'TextIndex' });

db.collection.runCommand('text', { search: 'my query' }, function (err, res) {
   console.log(res); 
  // { 
  //   "message": "failed to search items for user by query", 
  //   "error": "too many text index for: .. 
  // }
});

同样的问题也出现在mongo shell中。

0 个答案:

没有答案