Elasticsearch模糊查询
//----------单字段查询-----------------
http://170.160.230.26:9200/ppst/_doc/_search
{
"query": {
"match": {
"title": "设计"
}
},
"size": 2,
"from": 0,
"highlight": {
"fields" : {
"title" : {}
}
}
}
http://170.160.230.26:9200/ppst/_doc/_search
{
"query": {
"multi_match" : {
"query" : "设计PHP",
"fields": ["title", "content"]
}
}
}