得到这个错误,不知道为什么,这里是处理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 中。