Simple query string with special characters such as ( and =
问题 This is my index PUT /my_index { "settings": { "number_of_shards": 1, "number_of_replicas": 0, "analysis": { "filter": { "my_ascii_folding": { "type" : "asciifolding", "preserve_original": "true" } }, "analyzer": { "include_special_character": { "type": "custom", "filter": [ "lowercase", "my_ascii_folding" ], "tokenizer": "whitespace" } } } } } This is my mapping: PUT /my_index/_mapping/formulas { "properties": { "content": { "type": "text", "analyzer": "include_special_character" } } } My