创建index
curl -XPUT http://192.168.188.129:9200/department -d'
{
"index" : {
"analysis" : {
"analyzer" : {
"pinyin" : {
"tokenizer" : "my_pinyin"
}
},
"tokenizer" : {
"my_pinyin" : {
"type" : "pinyin",
"keep_separate_first_letter" : false,
"keep_full_pinyin" : true,
"keep_original" : true,
"limit_first_letter_length" : 16,
"lowercase" : true,
"remove_duplicated_term" : true
}
}
}
}
}'
创建mapping
curl -XPOST http://192.168.188.129:9200/department/employee/_mapping -d'
{
"employee": {
"properties": {
"name": {
"type": "string",
"fields": {
"pinyin": {
"type":"string",
"store": "no",
"term_vector": "with_offsets",
"analyzer": "pinyin",
"boost": 10
},
"ik": {
"type":"string",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word",
"include_in_all": "true",
"boost": 8
}
}
}
}
}
}'
修改mapping
curl -XPUT http://192.168.188.129:9200/department/_mapping/employee -d'
{
"properties": {
"about": {
"type": "string",
"fields": {
"pinyin": {
"type":"string",
"store": "no",
"term_vector": "with_offsets",
"analyzer": "pinyin",
"boost": 10
},
"ik": {
"type":"string",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word",
"include_in_all": "true",
"boost": 8
}
}
}
}
}'
查询
http://192.168.188.129:9200/department/employee/_search?q=name:刘