MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongo-DB-Fehler:Ungültiger Operator:$search bei der $text-Suche

In Mongo 2.6+ $text funktioniert wie folgt:

db.collection.insert({desc: "This is a string with text"});
db.collection.insert({desc:"This is a another string with Text"});
db.collection.insert({desc:"This is a another string with ext"});
db.collection.ensureIndex({"desc":"text"});
db.collection.find({
    $text:{
        $search:"text"
    }
}); 

Dies ergibt eine Ausgabe als:

{ "_id" : ObjectId("553277a608b85f33165bf3e0"),
 "desc" : "This is a another string with Text" }

{ "_id" : ObjectId("5532779f08b85f33165bf3df"), 
"desc" : "This is a string with text" }

Auch wenn Sie Mongo Version 2.4 verwenden, verwenden Sie Folgendes:

 db.collection.ensureIndex({"desc":"text"});
 db.collection.runCommand( "desc", { search: "Text"})