sql >> Databáze >  >> NoSQL >> MongoDB

Jak vyhledávat ve fulltextovém indexu pomocí php v mongodb

Zdá se, že toto je odpověď na mou otázku:

<?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. Jak zobrazit obrázek base64 v reakci?

  2. Vytvořte dynamický dotaz pomocí Mongoose

  3. mongo skupinový dotaz jak zachovat pole

  4. MongoDB bulkWrite()