赞
踩
-7.x中的type已经过时,默认设置为_doc
命令 | url | 解释 |
---|---|---|
put | /索引名称/类型名称/文档ID | 创建文档(指定文档ID) |
POST | /索引名称/索引类型 | 创建文档(随机文档ID) |
POST | /索引名称/类型名称/文档id/_update | 修改文档 |
POST | /索引名称/类型名称/_search | 查询数据 |
DELETE | /索引名称/类型名称/文档id | 删除文档/或者索引 |
GET | /索引名称/类型名称/文档id | 查询文档通过文档ID |
类型 | 对应类型 | 说明 |
---|---|---|
字符串 | text keyword | text自动分词,keyword全文匹配 |
整型 | byte short integer long | |
浮点型 | float double half_float scaled_float | |
日期 | date | |
布尔 | boolean | |
二进制 | binary | |
范围 | range | |
数组 | array | |
对象 | object | |
嵌套 | nested | |
ip | ip (IPv4 和 IPv6 地址) |
PUT index名
POST index名/_doc
{
你要添加的内容
}
DELETE index名
GET index名/_search?pretty
{
"query": {
"match_all": {}
}
}
GET index名/_search?pretty
{
"query": {
"match": {
"字段": "条件内容"
}
}
}
GET index名/_search?pretty
{
"query": {
"term": {
"字段": "条件内容"
}
}
}
GET index名/_search?pretty
{
"from": 0,
"size": 2,
"query": {
"match": {
"字段": "条件内容"
}
}
}
GET /atlas_cloud_logs/_search?pretty
{
"from": 0,
"size": 2,
"_source": ["字段"],
"query": {
"match": {
"字段": "条件内容"
}
}
}
GET index名/_search?pretty
{
"query": {
"bool": {
"filter": {
"range": {
"过滤的字段": {
"gte": 10,
"lte": 200
}
}
}
}
}
}
GET /atlas_cloud_logs/_search?pretty
{
"size": 0,
"query": {
"match_all": {
}
},
"aggs": {
"聚合后返回的关键字": {
"terms": {
"field": "聚合字段.keyword"
}
}
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。