zoukankan      html  css  js  c++  java
  • MongoDB全文搜索——目前尚不支持针对特定field的搜索

    > db.articles.createIndex( { subject: "text" } )
    {
            "createdCollectionAutomatically" : true,
            "numIndexesBefore" : 1,
            "numIndexesAfter" : 2,
            "ok" : 1
    }
    > db.articles.insert(
    ...    [
    ...      { _id: 1, subject: "coffee", author: "xyz", views: 50 },
    ...      { _id: 2, subject: "Coffee Shopping", author: "efg", views: 5 },
    ...      { _id: 3, subject: "Baking a cake", author: "abc", views: 90  },
    ...      { _id: 4, subject: "baking", author: "xyz", views: 100 },
    ...      { _id: 5, subject: "Caf Con Leche", author: "abc", views: 200 },
    ...      { _id: 6, subject: ".......", author: "jkl", views: 80 },
    ...      { _id: 7, subject: "coffee and cream", author: "efg", views: 10 },
    ...      { _id: 8, subject: "Cafe con Leche", author: "xyz", views: 10 }
    ...    ]
    ... )
    BulkWriteResult({
            "writeErrors" : [ ],
            "writeConcernErrors" : [ ],
            "nInserted" : 8,
            "nUpserted" : 0,
            "nMatched" : 0,
            "nModified" : 0,
            "nRemoved" : 0,
            "upserted" : [ ]
    })
    > db.articles.find( { $text: { $search: "coffee" } } )
    { "_id" : 2, "subject" : "Coffee Shopping", "author" : "efg", "views" : 5 }
    { "_id" : 7, "subject" : "coffee and cream", "author" : "efg", "views" : 10 }
    { "_id" : 1, "subject" : "coffee", "author" : "xyz", "views" : 50 }> db.articles.find( { $text: { $search: ""coffee shop"" } } )
    { "_id" : 2, "subject" : "Coffee Shopping", "author" : "efg", "views" : 5 }
    > db.articles.find( { $text: { $search: ""coffee" "shop"" } } )
    { "_id" : 2, "subject" : "Coffee Shopping", "author" : "efg", "views" : 5 }
    > db.articles.find( { $text: { $search: "coffee shop" } } )
    { "_id" : 2, "subject" : "Coffee Shopping", "author" : "efg", "views" : 5 }
    { "_id" : 7, "subject" : "coffee and cream", "author" : "efg", "views" : 10 }
    { "_id" : 1, "subject" : "coffee", "author" : "xyz", "views" : 50 }

    参考:https://docs.mongodb.com/manual/reference/operator/query/text/

  • 相关阅读:
    js每天进步一点点
    优化数据库的方法及SQL语句优化的原则
    实用js代码大全
    【怒转】 idea快捷键说明大全(中英文对照)
    正则表达式手册
    Flink分布式缓存Distributed Cache
    初识Flink广播变量broadcast
    怒转一波,此人整理的Flink特别好
    flink批处理中的source以及sink介绍
    初识Flink-从WorldCount开始
  • 原文地址:https://www.cnblogs.com/bonelee/p/6801264.html
Copyright © 2011-2022 走看看