zoukankan      html  css  js  c++  java
  • MongoDB 核心将支持全文搜索功能 (2.3.2)

    来自 MongoDB 官方 JIRA 的一个新特性报告称 MongoDB 将在 2.3.2 版本中增加全文搜索功能。该功能还是体验到阶段,使用方法包括:

    db.adminCommand( { setParameter : "*", textSearchEnabled : true } );

    或者是:

    ./mongod --setParameter textSearchEnabled=true

    特性:

    • parsing + stemming for latin languages
    • multi-word scoring
    • phrase matching
    • word negation
    • weights per field
    • additional suffix index fields for coverings
    • additional prefix index fields for partitioning
    • specify language per document

    简单使用示例:

    > db.foo.insert( { _id: 1 , desc: "the dog is running" } )
    > db.foo.insert( { _id: 2 , desc: "the cat is walking" } )
    > db.foo.ensureIndex( { "desc": "text" } )
    > db.foo.runCommand( "text", { search : "walk" } )
    {
        "queryDebugString" : "walk||||||",
        "language" : "english",
        "results" : [
            {
                "score" : 0.75,
                "obj" : {
                    "_id" : 2,
                    "desc" : "the cat is walking"
                }
            }
        ],
        "stats" : {
            "nscanned" : 1,
            "nscannedObjects" : 0,
            "n" : 1,
            "timeMicros" : 330
        },
        "ok" : 1
    }
  • 相关阅读:
    httphelper
    MD5加密
    json操作
    将list转成tree
    GenerateId类:生成唯一id、订单号
    加密、解密(默认密钥向量)
    Hadoop HDFS批量处理
    OceanBase学习总结
    TiDB学习
    开机自启动rc.local文件修改权限
  • 原文地址:https://www.cnblogs.com/shihao/p/2835255.html
Copyright © 2011-2022 走看看