java.lang.Object
io.lettuce.core.ZAddArgs
- All Implemented Interfaces:
CompositeArgument
public class ZAddArgs extends Object implements CompositeArgument
Argument list builder for the improved Redis ZADD command starting from Redis
3.0.2. Static import the methods from
ZAddArgs.Builder and call the methods: xx() or nx() .
ZAddArgs is a mutable object and instances should be used only once to avoid shared mutable state.
- Author:
- Mark Paluch, dengliming
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classZAddArgs.BuilderBuilder entry points forScanArgs. -
Constructor Summary
Constructors Constructor Description ZAddArgs() -
Method Summary
Modifier and Type Method Description <K, V> voidbuild(CommandArgs<K,V> args)Build command arguments and contribute arguments toCommandArgs.ZAddArgsch()Modify the return value from the number of new elements added, to the total number of elements changed.ZAddArgsgt()Only update existing elements if the new score is greater than the current score.ZAddArgslt()Only update existing elements if the new score is less than the current score.ZAddArgsnx()Don't update already existing elements.ZAddArgsxx()Only update elements that already exist.
-
Constructor Details
-
ZAddArgs
public ZAddArgs()
-
-
Method Details
-
nx
Don't update already existing elements. Always add new elements.- Returns:
thisZAddArgs.
-
xx
Only update elements that already exist. Never add elements.- Returns:
thisZAddArgs.
-
ch
Modify the return value from the number of new elements added, to the total number of elements changed.- Returns:
thisZAddArgs.
-
gt
Only update existing elements if the new score is greater than the current score. This flag doesn't prevent adding new elements.- Returns:
thisZAddArgs.- Since:
- 6.1
-
lt
Only update existing elements if the new score is less than the current score. This flag doesn't prevent adding new elements.- Returns:
thisZAddArgs.- Since:
- 6.1
-
build
Description copied from interface:CompositeArgumentBuild command arguments and contribute arguments toCommandArgs.Implementing classes are required to implement this method. Depending on the command nature and configured arguments, this method may contribute arguments but is not required to add arguments if none are specified.
- Specified by:
buildin interfaceCompositeArgument- Type Parameters:
K- Key type.V- Value type.- Parameters:
args- the command arguments, must not benull.
-