elasticsearch查询数据url记录

http://localhost:9200/_cat/indices?v   所有索引列表
http://localhost:9200/_cat/nodes?v    所有节点列表

key(index)/type(模型类名)/id(自定义的id)?pretty   //查询id数据
http://localhost:9200/testkey/vendorpriceinfo/2019?pretty


key(index)/type(模型类名)/_search?typed_keys=true  //查询数据
http://localhost:9200/testkey/vendorpriceinfo/_search?typed_keys=true

es安装,随便找个教程下载zip,解压运行即可。以上url可能会根据不同es版本有差别。

猜你喜欢

转载自blog.csdn.net/qq_38261174/article/details/97771396