ElasticSearch Head外掛常用操作命令
阿新 • • 發佈:2019-01-31
ElasticSearch Head外掛 常用命令語句
表格中的1、2、3、4分別對應下圖的四個輸入框
用途 | 1 | 2 | 3 | 4 |
查詢資料 | test_v4/type_v4/_search | get/post | ||
新增對映 | test_v4/_mapping/type_v4 | PUT | { "properties" : { "f_4" : { "type" : "string", "store": true, "term_vector":"with_positions_offsets_payloads", "analyzer":"ik" } } } | |
query查詢 | test_v4/_search | post | { "query":{ "term":{ "f_3":"足球" } } } |
|
插入資料 | test_v4/type_v4/201702107 | put | {"f_3":"這是測試"} | |
query查詢例項2 | { "query":{ "bool":{ "should":[ {"term":{"f_3":"足球"}}, {"term":{"f_3":"比賽"}} ], "must_not":{ "term":{"f_3":"裁判"} } } } } |
|||
filter查詢 | http://127.0.0.1:9200/ | test_v4/_search | post | { "filter":{ "bool":{ "should":[ {"term":{"f_3":"足球"}}, {"term":{"f_3":"比賽"}} ], "must_not":{ "term":{"f_3":"裁判"} } } } } |