我想在 ES 中的(分析字符串)字段上找到完全匹配。所有值都是整数,但映射为字符串。不幸的是,我无法更改映射和使用
query: {
match: {
fieldName: '1234'
}
}
也给了我 0 次点击。我无法弄清楚它是否是标准分析器在映射时以奇怪的方式工作
index: {
type: {
properties: {
fieldName: {
type: string
}
}
}
}
和数据是
{fieldName: '12345'}
或者我缺少匹配查询中的某些内容。
谢谢 :)