电商搜索中一个通用搜索语句:
GET /_search
{
"query": {
"function_score": {
"query": {
"bool": {
"should": [
{
"match_phrase": {
"title": {
"query": "神仙水",
"boost": 3
}
}
},
{
"match_phrase": {
"content": {
"query": "神仙水",
"boost": 1
}
}
}