我在查询字符串搜索中使用雪球分析器......就像这样
"query" : {
"query_string" : {
"query" : the-query-string-goes-here,
"default_operator" : "AND",
"analyzer" : "snowball"
}
}
这实际上有效,但它做了一些奇怪的事情......搜索“战斗”将返回“战斗”的结果,但忽略“战斗”的结果。搜索“crews”将返回“crew”而不是“crews”的结果,搜索“crew”也会忽略“crews”的结果......
有谁知道发生了什么?