<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12
      歿舞

      導航

       

      {
      "info": {
      "_postman_id": "7745c9e1-e87f-4385-adc9-16bc2ea8efc0",
      "name": "es7.7.0",
      "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
      },
      "item": [
      {
      "name": "獲取",
      "item": [
      {
      "name": "分頁排序獲取",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "query": { "match_all": {} },\r\n "sort": [\r\n { "account_number": "asc" }\r\n ],\r\n "from": 1,\r\n "size": 3\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "獲取指定主鍵",
      "request": {
      "method": "GET",
      "header": [],
      "body": {
      "mode": "raw",
      "raw": ""
      },
      "url": {
      "raw": "http://{{http_ip_port}}/customer/_doc/1?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "customer",
      "_doc",
      "1"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "獲取指定單詞",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\n "query": {\n "match": {\n "address": "mill lane"\n }\n }\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      },
      "description": "單詞可多個,空格隔開,每個單詞都是獨立搜索"
      },
      "response": []
      },
      {
      "name": "獲取指定內容",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\n "query": {\n "match_phrase": {\n "address": "Kings Place"\n }\n }\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      },
      "description": "match_phrase是查找短語,會將搜索內容作為整體進行匹配,對于field來說仍然是模糊匹配,這個例子類比mysql中的 address like '%mill lane%'"
      },
      "response": []
      },
      {
      "name": "多條件獲取",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "query": {\r\n "bool": {\r\n "must": [\r\n { "match": { "age": "40" } }\r\n ],\r\n "must_not": [\r\n { "match": { "state": "ID" } }\r\n ]\r\n }\r\n }\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "多條件獲取1",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "query": {\r\n "bool": {\r\n "must": [\r\n \t{ "match_phrase": { "address": "mill lane" } }\r\n ],\r\n "must_not": [\r\n { "match": { "age": "40" } }\r\n ],\r\n "filter": {\r\n "range": {\r\n "balance": {\r\n "gte": 40000,\r\n "lte": 50000\r\n }\r\n }\r\n }\r\n }\r\n },\r\n "sort": [\r\n { "account_number": "asc" }\r\n ],\r\n "from": 0,\r\n "size": 2\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "過濾器獲取",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "query": {\r\n "bool": {\r\n "must": { "match_all": {} },\r\n "filter": {\r\n "range": {\r\n "balance": {\r\n "gte": 20000,\r\n "lte": 30000\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "聚合查詢",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "size": 0,\r\n "aggs": {\r\n "group_by_state": {\r\n "terms": {\r\n "field": "state.keyword"\r\n ,"size": 2\r\n }\r\n \r\n }\r\n \r\n }\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "復雜聚合查詢1-分組求和",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "size": 0,\r\n "aggs": {\r\n "group_by_state": {\r\n "terms": {\r\n "field": "state.keyword"\r\n },\r\n "aggs": {\r\n "average_balance": {\r\n "avg": {\r\n "field": "balance"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "復雜聚合查詢2-分組求和排序",
      "protocolProfileBehavior": {
      "disableBodyPruning": true
      },
      "request": {
      "method": "GET",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\n "size": 0,\n "query": {\n "bool": {\n "filter": {\n "range": {\n "age": {\n "gte": 40\n }\n }\n }\n }\n },\n "aggs": {\n "group_by_state": {\n "terms": {\n "field": "state.keyword",\n "order": {\n "average_balance": "desc"\n },\n "size": 2,\n "shard_size": 4\n },\n "aggs": {\n "average_balance": {\n "avg": {\n "field": "balance"\n }\n },\n "stats_balance": {\n "stats": {\n "field": "balance"\n }\n }\n }\n }\n }\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_search?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_search"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      }
      ]
      },
      {
      "name": "插入",
      "item": [
      {
      "name": "插入索引",
      "request": {
      "method": "PUT",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "name": "John Doe"\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/customer/_doc/1?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "customer",
      "_doc",
      "1"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "批量插入索引",
      "request": {
      "method": "POST",
      "header": [
      {
      "key": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "file",
      "file": {}
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_bulk?pretty&refresh",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_bulk"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      },
      {
      "key": "refresh",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "插入指定id數據",
      "request": {
      "method": "PUT",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{"account_number":1047,"balance":164118,"firstname":"Elinor1","lastname":"Ratliff1","age":38,"gender":"M","address":"283 Kings Place","employer":"Scentric1","email":"elinorratliff@scentric.com","city":"Ribera","state":"WA"}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/bank/_doc/1047",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "bank",
      "_doc",
      "1047"
      ]
      }
      },
      "response": []
      },
      {
      "name": "更新數據",
      "request": {
      "method": "POST",
      "header": [
      {
      "key": "Content-Type",
      "name": "Content-Type",
      "value": "application/json",
      "type": "text"
      }
      ],
      "body": {
      "mode": "raw",
      "raw": "{\r\n "name": "John Doe"\r\n}"
      },
      "url": {
      "raw": "http://{{http_ip_port}}/customer/_doc?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "customer",
      "_doc"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      }
      ]
      },
      {
      "name": "es信息",
      "item": [
      {
      "name": "查看集群索引信息",
      "request": {
      "method": "GET",
      "header": [],
      "body": {
      "mode": "raw",
      "raw": ""
      },
      "url": {
      "raw": "http://{{http_ip_port}}/_cat/indices?v",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "_cat",
      "indices"
      ],
      "query": [
      {
      "key": "v",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "查看集群狀態",
      "request": {
      "method": "GET",
      "header": [],
      "body": {
      "mode": "raw",
      "raw": ""
      },
      "url": {
      "raw": "http://{{http_ip_port}}/_cat/health?v",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "_cat",
      "health"
      ],
      "query": [
      {
      "key": "v",
      "value": null
      }
      ]
      }
      },
      "response": []
      }
      ]
      },
      {
      "name": "刪除",
      "item": [
      {
      "name": "刪除指定id",
      "request": {
      "method": "DELETE",
      "header": [],
      "body": {
      "mode": "raw",
      "raw": ""
      },
      "url": {
      "raw": "http://{{http_ip_port}}/customer/_doc/1?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "customer",
      "_doc",
      "1"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      },
      {
      "name": "刪除索引",
      "request": {
      "method": "DELETE",
      "header": [],
      "body": {
      "mode": "raw",
      "raw": ""
      },
      "url": {
      "raw": "http://{{http_ip_port}}/customer?pretty",
      "protocol": "http",
      "host": [
      "{{http_ip_port}}"
      ],
      "path": [
      "customer"
      ],
      "query": [
      {
      "key": "pretty",
      "value": null
      }
      ]
      }
      },
      "response": []
      }
      ]
      }
      ]
      }

      posted on 2020-06-09 15:18  歿舞  閱讀(472)  評論(0)    收藏  舉報
       
      主站蜘蛛池模板: 国产成人精品中文字幕| 人妻系列无码专区69影院| 国产va免费精品观看| 久久香蕉国产线看观看怡红院妓院| 中文字幕在线无码一区二区三区 | 亚洲乱熟乱熟女一区二区| 陆丰市| 久热这里只有精品在线观看| 国产成人8X人网站视频| 国产一级老熟女自拍视频| 国产一区二区三区在线观看免费| 国产不卡免费一区二区| 少妇av一区二区三区无码| 蜜桃无码一区二区三区| 激情综合网激情五月激情| 国产成人欧美综合在线影院| 亚洲免费观看一区二区三区| 99精产国品一二三产品香蕉| 亚洲精品中文字幕在线观| 国产av午夜精品福利| 亚洲欧美日韩成人综合一区| 国产亚洲精品岁国产精品| 日韩欧美一卡2卡3卡4卡无卡免费2020| 亚洲a人片在线观看网址| 欧美精品亚洲精品日韩专区| 国产成人综合久久亚洲av| 午夜毛片不卡免费观看视频| 国产精品日日摸夜夜添夜夜添2021| 老熟女熟妇一区二区三区| 国产超高清麻豆精品传媒麻豆精品| 开心五月婷婷综合网站| 伊人精品久久久大香线蕉| 九九热在线观看视频精品| 丁香五月婷激情综合第九色 | 国产无遮挡又黄又爽在线视频| 十八禁国产一区二区三区| 女人张开腿无遮无挡视频| 亚洲丰满熟女一区二区蜜桃| 久久精品国产大片免费观看| 国产免费视频一区二区| 欧美成人无码a区视频在线观看|