elasticsearch not_analyzed不起作用

罗宾

为什么not_analyzed弹性搜索无法正常工作,我正在尝试解决

映射在此处可见:http : //i.stack.imgur.com/dGj7A.png

curl -XGET 'http://localhost:9200/gb/_analyze?field=tag?pretty' -d 'Black-cats'
curl -XGET 'http://localhost:9200/gb/_analyze?field=tweet?pretty' -d 'Black-cats' 
the results are the same
{
    "tokens": [{
        "token": "black",
        "start_offset": 0,
        "end_offset": 5,
        "type": "<ALPHANUM>",
        "position": 1
    }, {
        "token": "cats",
        "start_offset": 6,
        "end_offset": 10,
        "type": "<ALPHANUM>",
        "position": 2
    }]
}

您的网址错误,即您有两个?字符,之前的一个pretty应为&符&,请尝试使用此字符

curl -XGET 'http://localhost:9200/gb/_analyze?field=tag&pretty' -d 'Black-cats'
                                                       ^
                                                       |
                                          this should be a &, not a ?

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章