美文网首页
it搜索引擎的mapping

it搜索引擎的mapping

作者: 阳春是你 | 来源:发表于2017-02-26 19:13 被阅读34次
    curl -XPUT http://localhost:9200/it
    curl -XPOST http://localhost:9200/it/pages/_mapping -d'
    {
        "pages": {
                 "_all": {
                "analyzer": "ik_max_word",
                "search_analyzer": "ik_max_word",
                "store": "false"
            },
            "properties": {
                "content": {
                    "type": "string",
                    "analyzer": "ik_max_word",
                    "search_analyzer": "ik_max_word",
                    "include_in_all": "true"
                },
                "title": {
                    "type": "string",
                    "analyzer": "ik_max_word",
                    "search_analyzer": "ik_max_word",
                    "include_in_all": "true"
                },
            }
        }
    }'
    

    相关文章

      网友评论

          本文标题:it搜索引擎的mapping

          本文链接:https://www.haomeiwen.com/subject/pjfawttx.html