http://192.168.2.143:9200/blogs/blog/_search/
{
"query": {
"bool": {
"must": {
"bool": {
"should": [
{
"match": {
"title": "mysql"
}
},
{
"match": {
"content": "版本"
}
}
]
},
"must": [
{
"range": {
"id": {
"gte": "100",
"lte": "300"
}
}
}
]
}
},
"highlight": {
"fields": {
"id": {},
"title": {},
"content": {}
}
}
},
"from": 0,
"size": 10
}