Skip to main content

04映射关系

https://127.0.0.1:9200/user

{
    "mappings":{
        "properties": {
                "name":{
                    "type":"text",
                    "index": true
                },
                "sex":{
                    "type": "keyword",
                    "index": true
                },
                "tel":{
                    "type": "text",
                    "index": false
                }
        }
    }
}

https://127.0.0.1:9200/user/_doc/1

{
    "name":"jasper",
    "sex": "男的",
    "tel": "13522361593"
}
{
    "query":{
        "match":{
            "sex": "男"
        }
    }
}
// result
"hits": []
{
    "query":{
        "match_phrase":{
            "tel": "1111"
        }
    }
}
//result
"reason": "failed to create query: Cannot search on field [tel] since it is not indexed."