sql >> データベース >  >> NoSQL >> MongoDB

mongodbでphpを使用してフルテキストインデックスを検索する方法

    これが私の質問に対する答えのようです:

    <?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. MongoDBドキュメントから価値を得る方法

    2. MongoDBのテストデータの作成

    3. Node.jsでRESTfulAPIを最適に作成する方法

    4. IDセットで複数のドキュメントを更新します。マングース