prefix前缀查询
curl -XGET 'http://localhost:9200/library/book/_search?pretty=true' -d '{
"query": {
"prefix": {
"title": "cri"
}
}
}'curl -XGET 'http://localhost:9200/library/book/_search?pretty=true' -d '{
"query": {
"prefix": {
"title": {
"value": "cri",
"boost": 3.0
}
}
}
}'Last updated