摘要:
1. 根据id主键查询 2.查询所有 http://192.168.1.200:9200/my_doc/_doc/_search 3.按照需求查询 查询某个字段 查询单个 查询所有 http://192.168.1.200:9200/my_doc/_doc/_search?_source=id,na 阅读全文
摘要:
主键为1的 已经删除 { "_index": "my_doc", "_type": "_doc", "_id": "1", "_version": 2, "result": "deleted", "_shards": { "total": 1, "successful": 1, "failed": 阅读全文
摘要:
首先创建测试索引 接下来创建文档 创建完成回到 Elasticsearch head 中查看 其中 ignore_above": 256, 超过 256个字符 使用text 否者使用 keyword 进行检索 点击 数据浏览 查看刚添加的文档信息 如果添加时不指定ID的话 es 会自动生成主键 ht 阅读全文
摘要:
(put)请求方式 http://192.168.1.200:9200/index_mapping body 参数 { "mappings":{ "properties":{ "realname":{ "type":"text", "index":true }, "username":{ "type 阅读全文
摘要:
查看集群状态 GET _cluster/health http://192.168.1.200:9200/_cluster/health (GET) { "cluster_name": "cluster es node", 节点名称 "status": "green", //状态 (三个状态 gre 阅读全文
摘要:
gitHub 地址 https://github.com/mobz/elasticsearch head 克隆到本地 进行npm 安装运行 git clone git://github.com/mobz/elasticsearch head.git 下载完成后进入 cd elasticsearch 阅读全文