X实验室

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2020年1月29日

摘要: 查询可分为基础查询、条件查询和聚合查询3种。 1.基础查询 GET localhost:9200/索引名/_doc/文档id GET localhost:9200/avengers/_doc/1 2.条件查询 POST localhost:9200/索引名/_search POST localhos 阅读全文
posted @ 2020-01-29 22:37 Initial-X 阅读(133) 评论(0) 推荐(0) 编辑

摘要: 1.创建索引 PUT localhost:9200/customer?pretty 创建成功,返回: { "acknowledged": true, "shards_acknowledged": true, "index": "avengers" } 查看索引:GET localhost:9200/ 阅读全文
posted @ 2020-01-29 19:41 Initial-X 阅读(211) 评论(0) 推荐(0) 编辑