일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Java
- Kafka
- query
- matplotlib
- 900gle
- zip 파일 암호화
- license delete
- zip 암호화
- docker
- MySQL
- ELASTIC
- plugin
- TensorFlow
- springboot
- License
- API
- Test
- licence delete curl
- 파이썬
- analyzer test
- aggs
- flask
- sort
- Python
- high level client
- 차트
- token filter test
- aggregation
- Elasticsearch
- Mac
Archives
- Today
- Total
개발잡부
[es] query score test 본문
반응형
GET shop/_search
{
"from": 0,
"size": 10,
"timeout": "200ms",
"query": {
"function_score": {
"query": {
"bool": {
"must": [
{
"multi_match": {
"query": "루이 비통",
"fields": [
"name^0.0",
"category",
"category1",
"category2",
"category3",
"category4",
"category5"
],
"type": "best_fields",
"operator": "or"
}
}
]
}
},
"functions": [
{
"script_score": {
"script": {
"source": "1 + doc['weight'].value + _score ",
"lang": "painless"
}
}
}
],
"score_mode": "multiply",
"boost_mode": "multiply",
"max_boost": 3.4028235e+38,
"boost": 1
}
},
"_source": {
"includes": [
"name",
"price",
"category"
],
"excludes": []
}
}
반응형
'ElasticStack > Elasticsearch' 카테고리의 다른 글
[es] 자동완성 2 (2) | 2022.01.04 |
---|---|
[es] 자동완성1 (0) | 2022.01.04 |
[es] multi-match query (0) | 2021.12.20 |
[es] function score Query (0) | 2021.12.20 |
[es] plugin 4 - custom analyzer 사용 (0) | 2021.12.15 |
Comments