{
"query": {
"range": {
"word_count": {
"gte": 10000,
"lte": 30000
}
}
}
}
"query": {
"range": {
"word_count": {
"gte": 10000,
"lte": 30000
}
}
}
}
{
"query": {
"multi_match": {
"query": "张三",
"fields": ["author","title"]
}
}
}
"query": {
"multi_match": {
"query": "张三",
"fields": ["author","title"]
}
}
}
{
"aggs": {
"grades_word_count": {
"stats": {
"field": "word_count"
}
}
}
}
"aggs": {
"grades_word_count": {
"stats": {
"field": "word_count"
}
}
}
}
{
"aggs": {
"group_by_word_count": {
"terms": {
"field": "word_count"
}
},
"group_by_publish_date": {
"terms": {
"field": "publish_date"
}
}
}
}
"aggs": {
"group_by_word_count": {
"terms": {
"field": "word_count"
}
},
"group_by_publish_date": {
"terms": {
"field": "publish_date"
}
}
}
}
{
"query": {
"match": {
"title": "ElasticSearch"
}
},
"sort": [
{"publish_date": {"order": "desc"}}
]
}
"query": {
"match": {
"title": "ElasticSearch"
}
},
"sort": [
{"publish_date": {"order": "desc"}}
]
}
delete 删除文档 127.0.0.1:9200/people/man/1
delete 删除索引 127.0.0.1:9200/people
delete 删除索引 127.0.0.1:9200/people