Getting this error and don’t know why, here is a snippet of a function that has mongodb full-text search :
...
db.collection.ensureIndex({ description: 'text' }, { name: 'TextIndex' });
db.collection.runCommand('text', { search: 'my query' }, function (err, res) {
console.log(res);
});
The same problem occurs in the mango shell.
source
share