-
Notifications
You must be signed in to change notification settings - Fork 986
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support NX|XX|CH|INCR options in ZADD #74
- Loading branch information
Showing
6 changed files
with
242 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package com.lambdaworks.redis; | ||
|
||
import com.lambdaworks.redis.protocol.CommandArgs; | ||
|
||
/** | ||
* Argument list builder for the improved redis <a href="http://redis.io/commands/zadd">ZADD</a> command starting from Redis | ||
* 3.0.2. Static import the methods from {@link Builder} and call the methods: {@code xx()} or {@code nx()} . | ||
* | ||
* @author <a href="mailto:[email protected]">Mark Paluch</a> | ||
*/ | ||
public class ZAddArgs { | ||
private boolean nx = false; | ||
private boolean xx = false; | ||
private boolean ch = false; | ||
|
||
public static class Builder { | ||
/** | ||
* Utility constructor. | ||
*/ | ||
private Builder() { | ||
|
||
} | ||
|
||
public static ZAddArgs nx() { | ||
return new ZAddArgs().nx(); | ||
} | ||
|
||
public static ZAddArgs xx() { | ||
return new ZAddArgs().xx(); | ||
} | ||
|
||
public static ZAddArgs ch() { | ||
return new ZAddArgs().ch(); | ||
} | ||
} | ||
|
||
private ZAddArgs nx() { | ||
this.nx = true; | ||
return this; | ||
} | ||
|
||
private ZAddArgs ch() { | ||
this.ch = true; | ||
return this; | ||
} | ||
|
||
private ZAddArgs xx() { | ||
this.xx = true; | ||
return this; | ||
} | ||
|
||
public <K, V> void build(CommandArgs<K, V> args) { | ||
if (nx) { | ||
args.add("NX"); | ||
} | ||
|
||
if (xx) { | ||
args.add("XX"); | ||
} | ||
|
||
if (ch) { | ||
args.add("CH"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters