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

AND演算子を使用したマングーステキスト検索

    検索語を引用符で囲んで、デフォルトの動作をANDに変更します。

    https://docs.mongodb.org/manual/reference/ operator / query / text /#phrases

    exampleModel.find({
        $text: {
            $search: "\"restaurant\" \"london\""
        }
    }, {
        score: {
            $meta: "textScore"
        }
    }, { lean: true }).select(exampleViewModel).limit(1000).sort({
        score: {
            $meta: 'textScore'
        }
    }).exec(function (err, results) {
       next(null, results); 
    });
    


    1. ハイブリッドクラウド環境全体でのMongoDBの複製

    2. 文字列IDをBSON::ObjectIdと比較します

    3. LIKEクエリをMongoDBで機能させる方法は?

    4. Meteorデータの番号付きリストの作成