public class RedisClient_GroovyExtension extends Object
Constructor and Description |
---|
RedisClient_GroovyExtension() |
public static RedisClient blpop(RedisClient j_receiver, String key, int seconds, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient blpopMany(RedisClient j_receiver, List<String> keys, int seconds, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient brpop(RedisClient j_receiver, String key, int seconds, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient brpopMany(RedisClient j_receiver, List<String> keys, int seconds, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient clientKill(RedisClient j_receiver, Map<String,Object> filter, Handler<AsyncResult<Long>> handler)
public static RedisClient clusterGetkeysinslot(RedisClient j_receiver, long slot, long count, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient clusterInfo(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient clusterNodes(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient clusterSlaves(RedisClient j_receiver, String nodeId, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient clusterSlots(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient command(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient commandGetkeys(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient commandInfo(RedisClient j_receiver, List<String> commands, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient configGet(RedisClient j_receiver, String parameter, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient eval(RedisClient j_receiver, String script, List<String> keys, List<String> args, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient evalsha(RedisClient j_receiver, String sha1, List<String> keys, List<String> values, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient hgetall(RedisClient j_receiver, String key, Handler<AsyncResult<Map<String,Object>>> handler)
public static RedisClient hkeys(RedisClient j_receiver, String key, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient hmget(RedisClient j_receiver, String key, List<String> fields, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient hmset(RedisClient j_receiver, String key, Map<String,Object> values, Handler<AsyncResult<String>> handler)
public static RedisClient hvals(RedisClient j_receiver, String key, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient info(RedisClient j_receiver, Handler<AsyncResult<Map<String,Object>>> handler)
public static RedisClient infoSection(RedisClient j_receiver, String section, Handler<AsyncResult<Map<String,Object>>> handler)
public static RedisClient keys(RedisClient j_receiver, String pattern, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient lrange(RedisClient j_receiver, String key, long from, long to, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient mget(RedisClient j_receiver, String key, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient mgetMany(RedisClient j_receiver, List<String> keys, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient migrate(RedisClient j_receiver, String host, int port, String key, int destdb, long timeout, Map<String,Object> options, Handler<AsyncResult<String>> handler)
public static RedisClient mset(RedisClient j_receiver, Map<String,Object> keyvals, Handler<AsyncResult<String>> handler)
public static RedisClient msetnx(RedisClient j_receiver, Map<String,Object> keyvals, Handler<AsyncResult<Long>> handler)
public static RedisClient psubscribe(RedisClient j_receiver, String pattern, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient psubscribeMany(RedisClient j_receiver, List<String> patterns, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient pubsubChannels(RedisClient j_receiver, String pattern, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient pubsubNumsub(RedisClient j_receiver, List<String> channels, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient role(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient scriptExists(RedisClient j_receiver, String script, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient scriptExistsMany(RedisClient j_receiver, List<String> scripts, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient sdiff(RedisClient j_receiver, String key, List<String> cmpkeys, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient setWithOptions(RedisClient j_receiver, String key, String value, Map<String,Object> options, Handler<AsyncResult<String>> handler)
public static RedisClient setBinaryWithOptions(RedisClient j_receiver, String key, Buffer value, Map<String,Object> options, Handler<AsyncResult<Void>> handler)
public static RedisClient sinter(RedisClient j_receiver, List<String> keys, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient slowlogGet(RedisClient j_receiver, int limit, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient smembers(RedisClient j_receiver, String key, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient sort(RedisClient j_receiver, String key, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient spopMany(RedisClient j_receiver, String key, int count, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient srandmemberCount(RedisClient j_receiver, String key, int count, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient subscribe(RedisClient j_receiver, String channel, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient subscribeMany(RedisClient j_receiver, List<String> channels, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient sunion(RedisClient j_receiver, List<String> keys, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient time(RedisClient j_receiver, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrange(RedisClient j_receiver, String key, long start, long stop, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrangeWithOptions(RedisClient j_receiver, String key, long start, long stop, RangeOptions options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrangebylex(RedisClient j_receiver, String key, String min, String max, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrangebyscore(RedisClient j_receiver, String key, String min, String max, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrevrange(RedisClient j_receiver, String key, long start, long stop, RangeOptions options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrevrangebylex(RedisClient j_receiver, String key, String max, String min, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zrevrangebyscore(RedisClient j_receiver, String key, String max, String min, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient scan(RedisClient j_receiver, String cursor, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient sscan(RedisClient j_receiver, String key, String cursor, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient hscan(RedisClient j_receiver, String key, String cursor, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient zscan(RedisClient j_receiver, String key, String cursor, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient geoaddMany(RedisClient j_receiver, String key, List<Map<String,Object>> members, Handler<AsyncResult<Long>> handler)
public static RedisClient geohash(RedisClient j_receiver, String key, String member, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient geohashMany(RedisClient j_receiver, String key, List<String> members, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient geopos(RedisClient j_receiver, String key, String member, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient geoposMany(RedisClient j_receiver, String key, List<String> members, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient georadius(RedisClient j_receiver, String key, double longitude, double latitude, double radius, GeoUnit unit, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient georadiusWithOptions(RedisClient j_receiver, String key, double longitude, double latitude, double radius, GeoUnit unit, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient georadiusbymember(RedisClient j_receiver, String key, String member, double radius, GeoUnit unit, Handler<AsyncResult<List<Object>>> handler)
public static RedisClient georadiusbymemberWithOptions(RedisClient j_receiver, String key, String member, double radius, GeoUnit unit, Map<String,Object> options, Handler<AsyncResult<List<Object>>> handler)
Copyright © 2017. All rights reserved.