Uses of Class
redis.clients.jedis.params.ZParams
Packages that use ZParams
Package
Description
This package contains the interfaces that contain methods representing Redis core commands.
This package contains the classes that represent optional parameters of core Redis commands.
-
Uses of ZParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type ZParamsModifier and TypeMethodDescriptionfinal CommandObject<Set<byte[]>> final CommandObject<Set<String>> Set<byte[]> Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Set<byte[]> final CommandObject<Long> CommandObjects.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) final CommandObject<Long> CommandObjects.zinterstore(String dstkey, ZParams params, String... sets) longJedis.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at dstkey.longJedis.zinterstore(String dstkey, ZParams params, String... sets) Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at dstkey.MultiNodePipelineBase.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) MultiNodePipelineBase.zinterstore(String dstKey, ZParams params, String... sets) Pipeline.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) Pipeline.zinterstore(String dstKey, ZParams params, String... sets) TransactionBase.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) TransactionBase.zinterstore(String dstKey, ZParams params, String... sets) longUnifiedJedis.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) longUnifiedJedis.zinterstore(String dstkey, ZParams params, String... sets) final CommandObject<Set<Tuple>> CommandObjects.zinterWithScores(ZParams params, byte[]... keys) final CommandObject<Set<Tuple>> CommandObjects.zinterWithScores(ZParams params, String... keys) Jedis.zinterWithScores(ZParams params, byte[]... keys) Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Jedis.zinterWithScores(ZParams params, String... keys) Intersect multiple sorted sets, This command is similar to ZINTERSTORE, but instead of storing the resulting sorted set, it is returned to the connection.MultiNodePipelineBase.zinterWithScores(ZParams params, byte[]... keys) MultiNodePipelineBase.zinterWithScores(ZParams params, String... keys) Pipeline.zinterWithScores(ZParams params, byte[]... keys) Pipeline.zinterWithScores(ZParams params, String... keys) TransactionBase.zinterWithScores(ZParams params, byte[]... keys) TransactionBase.zinterWithScores(ZParams params, String... keys) UnifiedJedis.zinterWithScores(ZParams params, byte[]... keys) UnifiedJedis.zinterWithScores(ZParams params, String... keys) final CommandObject<Set<byte[]>> final CommandObject<Set<String>> Set<byte[]> Add multiple sorted sets, This command is similar to ZUNIONSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Add multiple sorted sets, This command is similar to ZUNIONSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Set<byte[]> final CommandObject<Long> CommandObjects.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) final CommandObject<Long> CommandObjects.zunionstore(String dstkey, ZParams params, String... sets) longJedis.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at dstkey.longJedis.zunionstore(String dstkey, ZParams params, String... sets) Creates a union or intersection of N sorted sets given by keys k1 through kN, and stores it at dstkey.MultiNodePipelineBase.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) MultiNodePipelineBase.zunionstore(String dstKey, ZParams params, String... sets) Pipeline.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) Pipeline.zunionstore(String dstKey, ZParams params, String... sets) TransactionBase.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) TransactionBase.zunionstore(String dstKey, ZParams params, String... sets) longUnifiedJedis.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) longUnifiedJedis.zunionstore(String dstkey, ZParams params, String... sets) final CommandObject<Set<Tuple>> CommandObjects.zunionWithScores(ZParams params, byte[]... keys) final CommandObject<Set<Tuple>> CommandObjects.zunionWithScores(ZParams params, String... keys) Jedis.zunionWithScores(ZParams params, byte[]... keys) Add multiple sorted sets with scores, This command is similar to ZUNIONSTORE, but instead of storing the resulting sorted set, it is returned to the connection.Jedis.zunionWithScores(ZParams params, String... keys) Add multiple sorted sets with scores, This command is similar to ZUNIONSTORE, but instead of storing the resulting sorted set, it is returned to the connection.MultiNodePipelineBase.zunionWithScores(ZParams params, byte[]... keys) MultiNodePipelineBase.zunionWithScores(ZParams params, String... keys) Pipeline.zunionWithScores(ZParams params, byte[]... keys) Pipeline.zunionWithScores(ZParams params, String... keys) TransactionBase.zunionWithScores(ZParams params, byte[]... keys) TransactionBase.zunionWithScores(ZParams params, String... keys) UnifiedJedis.zunionWithScores(ZParams params, byte[]... keys) UnifiedJedis.zunionWithScores(ZParams params, String... keys) -
Uses of ZParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type ZParamsModifier and TypeMethodDescriptionSet<byte[]> Compute the intersection between all the sets in the given keys.longSortedSetBinaryCommands.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) longSortedSetCommands.zinterstore(String dstkey, ZParams params, String... sets) Compute the intersection between all the sets in the given keys.SortedSetPipelineBinaryCommands.zinterstore(byte[] dstkey, ZParams params, byte[]... sets) SortedSetPipelineCommands.zinterstore(String dstKey, ZParams params, String... sets) SortedSetBinaryCommands.zinterWithScores(ZParams params, byte[]... keys) SortedSetCommands.zinterWithScores(ZParams params, String... keys) Compute the intersection between all the sets in the given keys.SortedSetPipelineBinaryCommands.zinterWithScores(ZParams params, byte[]... keys) SortedSetPipelineCommands.zinterWithScores(ZParams params, String... keys) Set<byte[]> Compute the union between all the sets in the given keys.longSortedSetBinaryCommands.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) longSortedSetCommands.zunionstore(String dstkey, ZParams params, String... sets) Compute the union between all the sets in the given keys.SortedSetPipelineBinaryCommands.zunionstore(byte[] dstkey, ZParams params, byte[]... sets) SortedSetPipelineCommands.zunionstore(String dstKey, ZParams params, String... sets) SortedSetBinaryCommands.zunionWithScores(ZParams params, byte[]... keys) SortedSetCommands.zunionWithScores(ZParams params, String... keys) Compute the union between all the sets in the given keys.SortedSetPipelineBinaryCommands.zunionWithScores(ZParams params, byte[]... keys) SortedSetPipelineCommands.zunionWithScores(ZParams params, String... keys) -
Uses of ZParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return ZParamsModifier and TypeMethodDescriptionZParams.aggregate(ZParams.Aggregate aggregate) ZParams.weights(double... weights)