analyzer(分析器)
curl -XPUT 'localhost:9200/my_index?pretty' -H 'Content-Type: application/json' -d'
{
"mappings": {
"my_type": {
"properties": {
"text": { # 1
"type": "text",
"fields": {
"english": { # 2
"type": "text",
"analyzer": "english"
}
}
}
}
}
}
}
'
curl -XGET 'localhost:9200/my_index/_analyze?pretty' -H 'Content-Type: application/json' -d' # 3
{
"field": "text",
"text": "The quick Brown Foxes."
}
'
curl -XGET 'localhost:9200/my_index/_analyze?pretty' -H 'Content-Type: application/json' -d' # 4
{
"field": "text.english",
"text": "The quick Brown Foxes."
}
'search_quote_analyzer(搜索引用分析器)
Last updated