开发者学堂课程【ElasticSearch 入门精讲:查询所有】学习笔记,与课程紧密连接,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/631/detail/9956
查询所有
CURL使用之查询所有
查询所有-GET
根据产品 ID 查询
curl -XGET http://localhost:9200/bigdata/product/1pretty.
在任意的查询 url 中添加 pretty 参数, es 可以获取更易识别的 json 结果。
检索文档中的一部分,显示特定的字段内容
curl -XGET
http://localhost:9200/bigdata/product/1?source=name,author&pretty'
获取 source 的数据
curl -XGET
http://localhost:9200/bigdata/product/1/source2retty'
查询所有
curl -XGET
http://localhost:9200/bigdata/product search?pretty'
根据条件进行查询
curl -XGET '
http://localhost:9200/bigdata/product/search?g=name:hbase&pretty'
====>主题: CURL 使用之查询所有
查询所有-GET
根据产品 ID 查询
curl -XGET http:/localhost:9200/bigdata/product/1?pretty
在任意的查询url中添加pretty参数,es 可以获取更易识别的 json 结果。
检索文档中的一部分,显示特定的字段内容
curl-XGEThttp://localhost:9200/bigdata/product/1?source=name,author&pretty
获取 source 的数据
curl-XGET'http://localhost:9200/bigdata/product/1/source?pretty'
查询所有
curl -XGET ht:/cahost/920/higdata/productcto search?retty'
根据条件进行查询
curl -XGET http://localhost:9200/bigdata/product/ search?q=name:hbase&pretty'