Uses of Enum
com.blackrook.redis.enums.Aggregation
Packages that use Aggregation
Package
Description
Contains classes relevant to connecting to Redis servers.
Contains interfaces for implementing Redis commands.
Contains useful enumerations.
-
Uses of Aggregation in com.blackrook.redis
Methods in com.blackrook.redis with parameters of type AggregationModifier and TypeMethodDescriptionlongRedisConnection.zinterstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) longRedisConnection.zinterstore(String destination, Aggregation aggregation, String key, String... keys) voidRedisPipeline.zinterstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) voidRedisPipeline.zinterstore(String destination, Aggregation aggregation, String key, String... keys) longRedisConnection.zunionstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) longRedisConnection.zunionstore(String destination, Aggregation aggregation, String key, String... keys) voidRedisPipeline.zunionstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) voidRedisPipeline.zunionstore(String destination, Aggregation aggregation, String key, String... keys) -
Uses of Aggregation in com.blackrook.redis.commands
Methods in com.blackrook.redis.commands with parameters of type AggregationModifier and TypeMethodDescriptionlongRedisConnectionCommands.zinterstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) longRedisConnectionCommands.zinterstore(String destination, Aggregation aggregation, String key, String... keys) LikeRedisConnectionCommands.zinterstore(String, double[], Aggregation, String, String...), except no weights are applied to the source value scores.voidRedisDeferredCommands.zinterstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) voidRedisDeferredCommands.zinterstore(String destination, Aggregation aggregation, String key, String... keys) LikeRedisDeferredCommands.zinterstore(String, double[], Aggregation, String, String...), except no weights are applied to the source value scores.longRedisConnectionCommands.zunionstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) longRedisConnectionCommands.zunionstore(String destination, Aggregation aggregation, String key, String... keys) LikeRedisConnectionCommands.zunionstore(String, double[], Aggregation, String, String...), except no weights are applied to the source value scores.voidRedisDeferredCommands.zunionstore(String destination, double[] weights, Aggregation aggregation, String key, String... keys) voidRedisDeferredCommands.zunionstore(String destination, Aggregation aggregation, String key, String... keys) LikeRedisDeferredCommands.zunionstore(String, double[], Aggregation, String, String...), except no weights are applied to the source value scores. -
Uses of Aggregation in com.blackrook.redis.enums
Subclasses with type arguments of type Aggregation in com.blackrook.redis.enumsModifier and TypeClassDescriptionenumAggregate function for union/intersection queries.Methods in com.blackrook.redis.enums that return AggregationModifier and TypeMethodDescriptionstatic AggregationReturns the enum constant of this type with the specified name.static Aggregation[]Aggregation.values()Returns an array containing the constants of this enum type, in the order they are declared.