美文网首页
elasticsearch 多条件查询与删除

elasticsearch 多条件查询与删除

作者: 严国华 | 来源:发表于2017-06-29 14:34 被阅读605次

查询:

curl xxx:9400/match_result_players_score_delay_v1/match_result_players_score_delay_info/_search?pretty -d '

{

      "query": {

              "bool": {"must": [

                          { "match": { "user_id":  "480863974" }},

                          { "match": { "last_match_id": "1230004347"}}

               ]}

   }

}

'


删除:

curl xxx:9400/match_result_players_score_delay_v1/match_result_players_score_delay_info/_delete_by_query?pretty -d  '

{

     "query": {

            "bool": {"must": [

                     { "match": { "user_id":  "480863974" }},

                     { "match": { "last_match_id": "1230004347"}}

              ]}

       }

}

'

相关文章

网友评论

      本文标题:elasticsearch 多条件查询与删除

      本文链接:https://www.haomeiwen.com/subject/fqbmcxtx.html