作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
刚开始使用Elasticsearch。并坚持第一个问题:
我的es索引中有以下字符串:
“收藏夹”,
“收藏夹\ a1”
如果我尝试仅先搜索
'query' => [
'match' => [
'name' => 'favourites'
]
],
'filtered' => [
'filter' => [
'term' => [
'name' => 'favourites'
],
]
]
最佳答案
尝试在映射中使用 "index": "not_analyzed"
,在查询中使用term filter(或term query)。
例如,我可以像这样设置一个简单的索引:
PUT /test_index
{
"mappings": {
"doc": {
"properties": {
"name": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
POST /test_index/doc/_bulk
{"index":{"_id":1}}
{"name": "favourites"}
{"index":{"_id":2}}
{"name": "favourites\\a1"}
POST /test_index/_search
{
"query": {
"term": {
"name": {
"value": "favourites"
}
}
}
}
...
{
"took": 45,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 0.30685282,
"hits": [
{
"_index": "test_index",
"_type": "doc",
"_id": "1",
"_score": 0.30685282,
"_source": {
"name": "favourites"
}
}
]
}
}
关于elasticsearch - 用Elasticsearch进行全词搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33174038/
我是一名优秀的程序员,十分优秀!