Elasticsearch語句整理
并且或
index/_search
{
"query": {
"bool": {
"must": [
{
"term": {
"storeId": {
"value": 2
}
}
}
],
"should": [
{
"match": {
"title": "答題技巧"
}
},{
"match": {
"title": "常見問題解答"
}
}
]
}
}
}
//更新一條數(shù)據(jù)
POST /index/_update_by_query
{
"query": {
"term": {
"_id": "b43d71d7ed6740ff9615885bae5f9e64"
}
},
"script": {
"lang": "painless",
"source": "ctx._source.id = params.id",
"params": {
"id": "b43d71d7ed6740ff9615885bae5f9e64"
}
}
}
浙公網(wǎng)安備 33010602011771號