你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
zz_hello
赞同来自:
PUT mindex { "settings": { "analysis": { "analyzer": { "pinyin_analyzer": { "tokenizer": "my_pinyin" } }, "tokenizer": { "my_pinyin": { "lowercase": "true", "keep_original": "true", "remove_duplicated_term": "true", "keep_separate_first_letter": "false", "type": "pinyin", "limit_first_letter_length": "16", "keep_full_pinyin": "true" } } } }, "mappings": { "doc":{ "properties":{ "name":{ "type":"text", "fields":{ "pinyin":{ "type":"text", "analyzer":"pinyin_analyzer", "term_vector": "with_offsets", "boost": 10 } } } } } } } PUT mindex/doc/1 { "name":"ZEN Rooms Rujia Hotel" } PUT mindex/doc/2 { "name":"如家" } PUT mindex/doc/3 { "name":"如家旅馆" } GET /mindex/_search { "query": { "bool": { "should": [ { "match": { "name.pinyin": "rujia" } } ] } } } GET /mindex/_search { "query": { "bool": { "should": [ { "match": { "name.pinyin": "如家" } } ] } } }
要回复问题请先登录或注册
2 个回复
zz_hello
赞同来自:
zz_hello
赞同来自: