elasticsearch 多条件查询与删除

查询:

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 多条件查询与删除)