这是一个简单的问题:
通常,当我在映射之外提供分析器时,我会查询以下句子:
POST three_in_one_index4/_analyze
{
"analyzer": "english_lower",
"text": "<p>lorem ipsum dolor sit amet.</p>"
}
现在我在映射内部给出分析器,例如:
"mappings": {
"column": {
"properties": {
"article1": {
"type": "text",
"analyzer": "english_lower"
},
"article2": {
"type": "text",
"analyzer": "latin_lower"
},
"article3": {
"type": "text",
"analyzer": "latinstem_and_englishlower"
}
}
}
}
那么现在应该如何分析呢?
我很确定下面不是我想要做的。
POST three_in_one_index4/_analyze
{
"analyzer": "english_lower",
"text": "<p>lorem ipsum dolor sit amet.</p>"
}