sql >> Databasteknik >  >> NoSQL >> MongoDB

Hur man söker i fulltextindex med php i mongodb

Detta verkar vara svaret på min fråga:

<?php
$result = $db->command(
    array(
        'text' => 'bar', //this is the name of the collection where we are searching
        'search' => 'hotel', //the string to search
        'limit' => 5, //the number of results, by default is 1000
        'project' => Array( //the fields to retrieve from db
            'title' => 1
        )
    )
);

http://www.php.net/manual/en/mongodb .command.php#111891




  1. Fel vid aktivering av datakryptering med lokal nyckel MONGODB

  2. Pymongo bulkinsatser

  3. Upsert Dictionary i MongoDb

  4. Fråga MongoDB (via pymongo) i skiftläge okänsligt effektivt