If you trying to search '阿你他' as phrase, then you should use "match_phrase"
GET /index/type/_search
{"query":
{"match_phrase" : {"field": "阿你他"}
}
If you simply want to search all document with either character 阿 or 你 or 他
GET /index/type/_search
{"query":
{"match" : {"field": "阿你他"}
}
P.S. I use the newest version of ElasticSearch 5.5.2, it work fine for me.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.