接口请求
我们可以直接在终端上使用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