Elasticsearch 常用接口

前端之家收集整理的这篇文章主要介绍了Elasticsearch 常用接口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

接口请求

我们可以直接在终端上使用curl 对接口进行请求

curl -XPOST http://host:port///_search -d "data" 2>/dev/null | python -m json.tool

通过python的json.tool可以将json响应优雅的展示出来,方便终端查看

查看分词

索引的分词器的分词结果查看

curl -XPOST "http://127.0.0.1:9200//_analyze?analyzer=ik" -d "你好hello" 2>/dev/null | python -m json.tool

分词结果如下

{
    "tokens": [
        {
            "end_offset": 2,"position": 1,"start_offset": 0,"token": "\u4f60\u597d","type": "CN_WORD"
        },{
            "end_offset": 7,"position": 2,"start_offset": 2,"token": "hello","type": "ENGLISH"
        }
    ]
}
原文链接:https://www.f2er.com/note/422180.html

猜你在找的程序笔记相关文章