sql >> Database >  >> NoSQL >> MongoDB

Mongo DB-fout:ongeldige operator:$ zoeken bij het zoeken naar $ tekst

In mongo 2.6+ $text werkt als volgt:

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"
    }
}); 

Dit geeft output als:

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

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

Als u mongo versie 2.4 gebruikt, gebruik dan het volgende:

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



  1. How-to:gebruik de HBase Thrift-interface, deel 2:rijen invoegen/krijgen

  2. $nin met de $expr

  3. MongoDB gaat Sharding gebruiken met $lookup Aggregation Operator

  4. Krijg positie van geselecteerd document in verzameling [mongoDB]