Skip to content

Commit

Permalink
Add ZUNION method to RedisClient
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jan 4, 2022
1 parent 55c0520 commit c3f30dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,5 +442,7 @@ static RedisClient createClient(String name) {

Response zscore(String arg0, String arg1);

Response zunion(List<String> args);

Response zunionstore(List<String> args);
}
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,11 @@ public Response zscore(String arg0, String arg1) {
return await(redisAPI.zscore(arg0, arg1));
}

@Override
public Response zunion(List<String> args) {
return await(redisAPI.zunion(args));
}

@Override
public Response zunionstore(List<String> args) {
return await(redisAPI.zunionstore(args));
Expand Down

0 comments on commit c3f30dd

Please sign in to comment.