Term查询
//当含空格的短语时,则搜索不到
curl -XGET 'http://localhost:9200/oa/user/_search?pretty=true' -d '{
"query": {
"term": {
"user_name": {
"value": "herry hong",
"boost": 1
}
}
}
}'
//单个词时,则可以搜索到
curl -XGET 'http://localhost:9200/crm/employee/_search?pretty=true' -d '{
"query": {
"term": {
"first_name": "revin"
}
}
}'Last updated