查询ott的索引文档的中的内容
curl -XPOST 'localhost:9200/ott/_search?pretty' -d '
{ "query": { "match_all": {} } }';查看索引节点
curl 'localhost:9200/_cat/indices?v'
删除索引
curl -XDELETE 'localhost:9200/customer?pretty'
本文共 249 字,大约阅读时间需要 1 分钟。
查询ott的索引文档的中的内容
curl -XPOST 'localhost:9200/ott/_search?pretty' -d '
{ "query": { "match_all": {} } }';查看索引节点
curl 'localhost:9200/_cat/indices?v'
删除索引
curl -XDELETE 'localhost:9200/customer?pretty'
转载于:https://my.oschina.net/u/3371661/blog/3021814