Class RedisCommandsWrapper<K,V>
- java.lang.Object
-
- com.amazonaws.athena.connectors.redis.lettuce.RedisCommandsWrapper<K,V>
-
public class RedisCommandsWrapper<K,V> extends Object
-
-
Constructor Summary
Constructors Constructor Description RedisCommandsWrapper(io.lettuce.core.api.sync.RedisCommands<K,V> standaloneCommands, io.lettuce.core.cluster.api.sync.RedisAdvancedClusterCommands<K,V> clusterCommands, boolean isCluster)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TevalReadOnly(byte[] script, io.lettuce.core.ScriptOutputType type, K[] keys, V... values)Vget(K var1)Map<K,V>hgetall(K var1)Stringhmset(K var1, Map<K,V> var2)io.lettuce.core.KeyScanCursor<K>scan(io.lettuce.core.ScanCursor var1, io.lettuce.core.ScanArgs var2)Stringset(K var1, V var2)Longzadd(K var1, double var2, V var3)Longzcount(K var1, io.lettuce.core.Range<? extends Number> var2)List<V>zrange(K var1, long var2, long var3)io.lettuce.core.ScoredValueScanCursor<V>zscan(K var1, io.lettuce.core.ScanCursor var2)
-
-
-
Method Detail
-
scan
public io.lettuce.core.KeyScanCursor<K> scan(io.lettuce.core.ScanCursor var1, io.lettuce.core.ScanArgs var2)
-
zscan
public io.lettuce.core.ScoredValueScanCursor<V> zscan(K var1, io.lettuce.core.ScanCursor var2)
-
evalReadOnly
public <T> T evalReadOnly(byte[] script, io.lettuce.core.ScriptOutputType type, K[] keys, V... values)
-
-