/* * Copyright 2011-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.data.redis.connection; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.TimeUnit; import org.springframework.data.geo.Circle; import org.springframework.data.geo.Distance; import org.springframework.data.geo.GeoResults; import org.springframework.data.geo.Metric; import org.springframework.data.geo.Point; import org.springframework.data.redis.core.Cursor; import org.springframework.data.redis.core.RedisCallback; import org.springframework.data.redis.core.ScanOptions; import org.springframework.data.redis.core.StringRedisTemplate; import org.springframework.data.redis.core.types.Expiration; import org.springframework.data.redis.core.types.RedisClientInfo; import org.springframework.data.redis.serializer.RedisSerializer; /** * Convenience extension of {@link RedisConnection} that accepts and returns {@link String}s instead of byte arrays. * Uses a {@link RedisSerializer} underneath to perform the conversion. * * @author Costin Leau * @author Christoph Strobl * @author Thomas Darimont * @author David Liu * @author Mark Paluch * @author Ninad Divadkar * @see RedisCallback * @see RedisSerializer * @see StringRedisTemplate */ public interface StringRedisConnection extends RedisConnection { /** * String-friendly ZSet tuple. */ public interface StringTuple extends Tuple { String getValueAsString(); } /** * 'Native' or 'raw' execution of the given command along-side the given arguments. The command is executed as is, * with as little 'interpretation' as possible - it is up to the caller to take care of any processing of arguments or * the result. * * @param command Command to execute * @param args Possible command arguments (may be null) * @return execution result. * @see RedisCommands#execute(String, byte[]...) */ Object execute(String command, String... args); /** * 'Native' or 'raw' execution of the given command along-side the given arguments. The command is executed as is, * with as little 'interpretation' as possible - it is up to the caller to take care of any processing of arguments or * the result. * * @param command Command to execute * @return execution result. * @see RedisCommands#execute(String, byte[]...) */ Object execute(String command); /** * Determine if given {@code key} exists. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/exists">Redis Documentation: EXISTS</a> * @see RedisKeyCommands#exists(byte[]) */ Boolean exists(String key); /** * Delete given {@code keys}. * * @param keys must not be {@literal null}. * @return The number of keys that were removed. * @see <a href="http://redis.io/commands/del">Redis Documentation: DEL</a> * @see RedisKeyCommands#del(byte[]...) */ Long del(String... keys); /** * Determine the type stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/type">Redis Documentation: TYPE</a> * @see RedisKeyCommands#type(byte[]) */ DataType type(String key); /** * Find all keys matching the given {@code pattern}. * * @param pattern must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/keys">Redis Documentation: KEYS</a> * @see RedisKeyCommands#keys(byte[]) */ Collection<String> keys(String pattern); /** * Rename key {@code oleName} to {@code newName}. * * @param oldName must not be {@literal null}. * @param newName must not be {@literal null}. * @see <a href="http://redis.io/commands/rename">Redis Documentation: RENAME</a> * @see RedisKeyCommands#rename(byte[], byte[]) */ void rename(String oldName, String newName); /** * Rename key {@code oleName} to {@code newName} only if {@code newName} does not exist. * * @param oldName must not be {@literal null}. * @param newName must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/renamenx">Redis Documentation: RENAMENX</a> * @see RedisKeyCommands#renameNX(byte[], byte[]) */ Boolean renameNX(String oldName, String newName); /** * Set time to live for given {@code key} in seconds. * * @param key must not be {@literal null}. * @param seconds * @return * @see <a href="http://redis.io/commands/expire">Redis Documentation: EXPIRE</a> * @see RedisKeyCommands#expire(byte[], long) */ Boolean expire(String key, long seconds); /** * Set time to live for given {@code key} in milliseconds. * * @param key must not be {@literal null}. * @param millis * @return * @see <a href="http://redis.io/commands/pexpire">Redis Documentation: PEXPIRE</a> * @see RedisKeyCommands#pExpire(byte[], long) */ Boolean pExpire(String key, long millis); /** * Set the expiration for given {@code key} as a {@literal UNIX} timestamp. * * @param key must not be {@literal null}. * @param unixTime * @return * @see <a href="http://redis.io/commands/expireat">Redis Documentation: EXPIREAT</a> * @see RedisKeyCommands#expireAt(byte[], long) */ Boolean expireAt(String key, long unixTime); /** * Set the expiration for given {@code key} as a {@literal UNIX} timestamp in milliseconds. * * @param key must not be {@literal null}. * @param unixTimeInMillis * @return * @see <a href="http://redis.io/commands/pexpireat">Redis Documentation: PEXPIREAT</a> * @see RedisKeyCommands#pExpireAt(byte[], long) */ Boolean pExpireAt(String key, long unixTimeInMillis); /** * Remove the expiration from given {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/persist">Redis Documentation: PERSIST</a> * @see RedisKeyCommands#persist(byte[]) */ Boolean persist(String key); /** * Move given {@code key} to database with {@code index}. * * @param key must not be {@literal null}. * @param dbIndex * @return * @see <a href="http://redis.io/commands/move">Redis Documentation: MOVE</a> * @see RedisKeyCommands#move(byte[], int) */ Boolean move(String key, int dbIndex); /** * Get the time to live for {@code key} in seconds. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/ttl">Redis Documentation: TTL</a> * @see RedisKeyCommands#ttl(byte[]) */ Long ttl(String key); /** * Get the time to live for {@code key} in and convert it to the given {@link TimeUnit}. * * @param key must not be {@literal null}. * @param timeUnit must not be {@literal null}. * @return * @since 1.8 * @see <a href="http://redis.io/commands/ttl">Redis Documentation: TTL</a> * @see RedisKeyCommands#ttl(byte[], TimeUnit) */ Long ttl(String key, TimeUnit timeUnit); /** * Get the precise time to live for {@code key} in milliseconds. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/pttl">Redis Documentation: PTTL</a> * @see RedisKeyCommands#pTtl(byte[]) */ Long pTtl(String key); /** * Get the precise time to live for {@code key} in and convert it to the given {@link TimeUnit}. * * @param key must not be {@literal null}. * @param timeUnit must not be {@literal null}. * @return * @since 1.8 * @see <a href="http://redis.io/commands/pttl">Redis Documentation: PTTL</a> * @see RedisKeyCommands#pTtl(byte[], TimeUnit) */ Long pTtl(String key, TimeUnit timeUnit); /** * Returns {@code message} via server roundtrip. * * @param message the message to echo. * @return * @see <a href="http://redis.io/commands/echo">Redis Documentation: ECHO</a> * @see RedisConnectionCommands#echo(byte[]) */ String echo(String message); /** * Sort the elements for {@code key}. * * @param key must not be {@literal null}. * @param params must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sort">Redis Documentation: SORT</a> */ List<String> sort(String key, SortParameters params); /** * Sort the elements for {@code key} and store result in {@code storeKey}. * * @param key must not be {@literal null}. * @param params must not be {@literal null}. * @param storeKey must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sort">Redis Documentation: SORT</a> */ Long sort(String key, SortParameters params, String storeKey); // ------------------------------------------------------------------------- // Methods dealing with values/Redis strings // ------------------------------------------------------------------------- /** * Get the value of {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/get">Redis Documentation: GET</a> * @see RedisStringCommands#get(byte[]) */ String get(String key); /** * Set {@code value} of {@code key} and return its old value. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/getset">Redis Documentation: GETSET</a> * @see RedisStringCommands#getSet(byte[], byte[]) */ String getSet(String key, String value); /** * Get multiple {@code keys}. Values are returned in the order of the requested keys. * * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/mget">Redis Documentation: MGET</a> * @see RedisStringCommands#mGet(byte[]...) */ List<String> mGet(String... keys); /** * Set {@code value} for {@code key}. * * @param key must not be {@literal null}. * @param value must not be {@literal null}. * @see <a href="http://redis.io/commands/set">Redis Documentation: SET</a> * @see RedisStringCommands#set(byte[], byte[]) */ void set(String key, String value); /** * Set {@code value} for {@code key} applying timeouts from {@code expiration} if set and inserting/updating values * depending on {@code option}. * * @param key must not be {@literal null}. * @param value must not be {@literal null}. * @param expiration can be {@literal null}. Defaulted to {@link Expiration#persistent()}. * @param option can be {@literal null}. Defaulted to {@link SetOption#UPSERT}. * @since 1.7 * @see <a href="http://redis.io/commands/set">Redis Documentation: SET</a> * @see RedisStringCommands#set(byte[], byte[], Expiration, SetOption) */ void set(String key, String value, Expiration expiration, SetOption option); /** * Set {@code value} for {@code key}, only if {@code key} does not exist. * * @param key must not be {@literal null}. * @param value must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/setnx">Redis Documentation: SETNX</a> * @see RedisStringCommands#setNX(byte[], byte[]) */ Boolean setNX(String key, String value); /** * Set the {@code value} and expiration in {@code seconds} for {@code key}. * * @param key must not be {@literal null}. * @param seconds * @param value must not be {@literal null}. * @see <a href="http://redis.io/commands/setex">Redis Documentation: SETEX</a> * @see RedisStringCommands#setEx(byte[], long, byte[]) */ void setEx(String key, long seconds, String value); /** * Set the {@code value} and expiration in {@code milliseconds} for {@code key}. * * @param key must not be {@literal null}. * @param milliseconds * @param value must not be {@literal null}. * @since 1.3 * @see <a href="http://redis.io/commands/psetex">Redis Documentation: PSETEX</a> * @see RedisStringCommands#pSetEx(byte[], long, byte[]) */ void pSetEx(String key, long milliseconds, String value); /** * Set multiple keys to multiple values using key-value pairs provided in {@code tuple}. * * @param tuple must not be {@literal null}. * @see <a href="http://redis.io/commands/mset">Redis Documentation: MSET</a> * @see RedisStringCommands#mSet(Map) */ void mSetString(Map<String, String> tuple); /** * Set multiple keys to multiple values using key-value pairs provided in {@code tuple} only if the provided key does * not exist. * * @param tuple must not be {@literal null}. * @see <a href="http://redis.io/commands/msetnx">Redis Documentation: MSETNX</a> * @see RedisStringCommands#mSetNX(Map) */ Boolean mSetNXString(Map<String, String> tuple); /** * Increment an integer value stored as string value of {@code key} by 1. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/incr">Redis Documentation: INCR</a> * @see RedisStringCommands#incr(byte[]) */ Long incr(String key); /** * Increment an integer value stored of {@code key} by {@code delta}. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/incrby">Redis Documentation: INCRBY</a> * @see RedisStringCommands#incrBy(byte[], long) */ Long incrBy(String key, long value); /** * Increment a floating point number value of {@code key} by {@code delta}. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/incrbyfloat">Redis Documentation: INCRBYFLOAT</a> * @see RedisStringCommands#incrBy(byte[], double) */ Double incrBy(String key, double value); /** * Decrement an integer value stored as string value of {@code key} by 1. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/decr">Redis Documentation: DECR</a> * @see RedisStringCommands#decr(byte[]) */ Long decr(String key); /** * Decrement an integer value stored as string value of {@code key} by {@code value}. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/decrby">Redis Documentation: DECRBY</a> * @see RedisStringCommands#decrBy(byte[], long) */ Long decrBy(String key, long value); /** * Append a {@code value} to {@code key}. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/append">Redis Documentation: APPEND</a> * @see RedisStringCommands#append(byte[], byte[]) */ Long append(String key, String value); /** * Get a substring of value of {@code key} between {@code start} and {@code end}. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/getrange">Redis Documentation: GETRANGE</a> * @see RedisStringCommands#getRange(byte[], long, long) */ String getRange(String key, long start, long end); /** * Overwrite parts of {@code key} starting at the specified {@code offset} with given {@code value}. * * @param key must not be {@literal null}. * @param value * @param offset * @see <a href="http://redis.io/commands/setrange">Redis Documentation: SETRANGE</a> * @see RedisStringCommands#setRange(byte[], byte[], long) */ void setRange(String key, String value, long offset); /** * Get the bit value at {@code offset} of value at {@code key}. * * @param key must not be {@literal null}. * @param offset * @return * @see <a href="http://redis.io/commands/getbit">Redis Documentation: GETBIT</a> * @see RedisStringCommands#getBit(byte[], long) */ Boolean getBit(String key, long offset); /** * Sets the bit at {@code offset} in value stored at {@code key}. * * @param key must not be {@literal null}. * @param offset * @param value * @return the original bit value stored at {@code offset}. * @see <a href="http://redis.io/commands/setbit">Redis Documentation: SETBIT</a> * @see RedisStringCommands#setBit(byte[], long, boolean) */ Boolean setBit(String key, long offset, boolean value); /** * Count the number of set bits (population counting) in value stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/bitcount">Redis Documentation: BITCOUNT</a> * @see RedisStringCommands#bitCount(byte[]) */ Long bitCount(String key); /** * Count the number of set bits (population counting) of value stored at {@code key} between {@code start} and * {@code end}. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/bitcount">Redis Documentation: BITCOUNT</a> * @see RedisStringCommands#bitCount(byte[], long, long) */ Long bitCount(String key, long start, long end); /** * Perform bitwise operations between strings. * * @param op must not be {@literal null}. * @param destination must not be {@literal null}. * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/bitop">Redis Documentation: BITOP</a> * @see RedisStringCommands#bitOp(BitOperation, byte[], byte[]...) */ Long bitOp(BitOperation op, String destination, String... keys); /** * Get the length of the value stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/strlen">Redis Documentation: STRLEN</a> * @see RedisStringCommands#strLen(byte[]) */ Long strLen(String key); // ------------------------------------------------------------------------- // Methods dealing with Redis Lists // ------------------------------------------------------------------------- /** * Append {@code values} to {@code key}. * * @param key must not be {@literal null}. * @param values * @return * @see <a href="http://redis.io/commands/rpush">Redis Documentation: RPUSH</a> * @see RedisListCommands#rPush(byte[], byte[]...) */ Long rPush(String key, String... values); /** * Prepend {@code values} to {@code key}. * * @param key must not be {@literal null}. * @param values * @return * @see <a href="http://redis.io/commands/lpush">Redis Documentation: LPUSH</a> * @see RedisListCommands#lPush(byte[], byte[]...) */ Long lPush(String key, String... values); /** * Append {@code values} to {@code key} only if the list exists. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/rpushx">Redis Documentation: RPUSHX</a> * @see RedisListCommands#rPushX(byte[], byte[]) */ Long rPushX(String key, String value); /** * Prepend {@code values} to {@code key} only if the list exists. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/lpushx">Redis Documentation: LPUSHX</a> * @see RedisListCommands#lPushX(byte[], byte[]) */ Long lPushX(String key, String value); /** * Get the size of list stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/llen">Redis Documentation: LLEN</a> * @see RedisListCommands#lLen(byte[]) */ Long lLen(String key); /** * Get elements between {@code start} and {@code end} from list at {@code key}. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/lrange">Redis Documentation: LRANGE</a> * @see RedisListCommands#lRange(byte[], long, long) */ List<String> lRange(String key, long start, long end); /** * Trim list at {@code key} to elements between {@code start} and {@code end}. * * @param key must not be {@literal null}. * @param start * @param end * @see <a href="http://redis.io/commands/ltrim">Redis Documentation: LTRIM</a> * @see RedisListCommands#lTrim(byte[], long, long) */ void lTrim(String key, long start, long end); /** * Get element at {@code index} form list at {@code key}. * * @param key must not be {@literal null}. * @param index * @return * @see <a href="http://redis.io/commands/lindex">Redis Documentation: LINDEX</a> * @see RedisListCommands#lIndex(byte[], long) */ String lIndex(String key, long index); /** * Insert {@code value} {@link Position#BEFORE} or {@link Position#AFTER} existing {@code pivot} for {@code key}. * * @param key must not be {@literal null}. * @param where must not be {@literal null}. * @param pivot * @param value * @return * @see <a href="http://redis.io/commands/linsert">Redis Documentation: LINSERT</a> * @see RedisListCommands#lIndex(byte[], long) */ Long lInsert(String key, Position where, String pivot, String value); /** * Set the {@code value} list element at {@code index}. * * @param key must not be {@literal null}. * @param index * @param value * @see <a href="http://redis.io/commands/lset">Redis Documentation: LSET</a> * @see RedisListCommands#lSet(byte[], long, byte[]) */ void lSet(String key, long index, String value); /** * Removes the first {@code count} occurrences of {@code value} from the list stored at {@code key}. * * @param key must not be {@literal null}. * @param count * @param value * @return * @see <a href="http://redis.io/commands/lrem">Redis Documentation: LREM</a> * @see RedisListCommands#lRem(byte[], long, byte[]) */ Long lRem(String key, long count, String value); /** * Removes and returns first element in list stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/lpop">Redis Documentation: LPOP</a> * @see RedisListCommands#lPop(byte[]) */ String lPop(String key); /** * Removes and returns last element in list stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/rpop">Redis Documentation: RPOP</a> * @see RedisListCommands#rPop(byte[]) */ String rPop(String key); /** * Removes and returns first element from lists stored at {@code keys} (see: {@link #lPop(byte[])}). <br> * <b>Blocks connection</b> until element available or {@code timeout} reached. * * @param timeout * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/blpop">Redis Documentation: BLPOP</a> * @see RedisListCommands#bLPop(int, byte[]...) */ List<String> bLPop(int timeout, String... keys); /** * Removes and returns last element from lists stored at {@code keys} (see: {@link #rPop(byte[])}). <br> * <b>Blocks connection</b> until element available or {@code timeout} reached. * * @param timeout * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/brpop">Redis Documentation: BRPOP</a> * @see RedisListCommands#bRPop(int, byte[]...) */ List<String> bRPop(int timeout, String... keys); /** * Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value. * * @param srcKey must not be {@literal null}. * @param dstKey must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/rpoplpush">Redis Documentation: RPOPLPUSH</a> * @see RedisListCommands#rPopLPush(byte[], byte[]) */ String rPopLPush(String srcKey, String dstKey); /** * Remove the last element from list at {@code srcKey}, append it to {@code dstKey} and return its value (see * {@link #rPopLPush(byte[], byte[])}). <br> * <b>Blocks connection</b> until element available or {@code timeout} reached. * * @param timeout * @param srcKey must not be {@literal null}. * @param dstKey must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/brpoplpush">Redis Documentation: BRPOPLPUSH</a> * @see RedisListCommands#bRPopLPush(int, byte[], byte[]) */ String bRPopLPush(int timeout, String srcKey, String dstKey); // ------------------------------------------------------------------------- // Methods dealing with Redis Sets // ------------------------------------------------------------------------- /** * Add given {@code values} to set at {@code key}. * * @param key must not be {@literal null}. * @param values * @return * @see <a href="http://redis.io/commands/sadd">Redis Documentation: SADD</a> * @see RedisSetCommands#sAdd(byte[], byte[]...) */ Long sAdd(String key, String... values); /** * Remove given {@code values} from set at {@code key} and return the number of removed elements. * * @param key must not be {@literal null}. * @param values * @return * @see <a href="http://redis.io/commands/srem">Redis Documentation: SREM</a> * @see RedisSetCommands#sRem(byte[], byte[]...) */ Long sRem(String key, String... values); /** * Remove and return a random member from set at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/spop">Redis Documentation: SPOP</a> * @see RedisSetCommands#sPop(byte[]) */ String sPop(String key); /** * Move {@code value} from {@code srcKey} to {@code destKey} * * @param srcKey must not be {@literal null}. * @param destKey must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/smove">Redis Documentation: SMOVE</a> * @see RedisSetCommands#sMove(byte[], byte[], byte[]) */ Boolean sMove(String srcKey, String destKey, String value); /** * Get size of set at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/scard">Redis Documentation: SCARD</a> * @see RedisSetCommands#sCard(byte[]) */ Long sCard(String key); /** * Check if set at {@code key} contains {@code value}. * * @param key must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/sismember">Redis Documentation: SISMEMBER</a> * @see RedisSetCommands#sIsMember(byte[], byte[]) */ Boolean sIsMember(String key, String value); /** * Returns the members intersecting all given sets at {@code keys}. * * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sinter">Redis Documentation: SINTER</a> * @see RedisSetCommands#sInter(byte[]...) */ Set<String> sInter(String... keys); /** * Intersect all given sets at {@code keys} and store result in {@code destKey}. * * @param destKey must not be {@literal null}. * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sinterstore">Redis Documentation: SINTERSTORE</a> * @see RedisSetCommands#sInterStore(byte[], byte[]...) */ Long sInterStore(String destKey, String... keys); /** * Union all sets at given {@code keys}. * * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sunion">Redis Documentation: SUNION</a> * @see RedisSetCommands#sUnion(byte[]...) */ Set<String> sUnion(String... keys); /** * Union all sets at given {@code keys} and store result in {@code destKey}. * * @param destKey must not be {@literal null}. * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sunionstore">Redis Documentation: SUNIONSTORE</a> * @see RedisSetCommands#sUnionStore(byte[], byte[]...) */ Long sUnionStore(String destKey, String... keys); /** * Diff all sets for given {@code keys}. * * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sdiff">Redis Documentation: SDIFF</a> * @see RedisSetCommands#sDiff(byte[]...) */ Set<String> sDiff(String... keys); /** * Diff all sets for given {@code keys} and store result in {@code destKey}. * * @param destKey must not be {@literal null}. * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/sdiffstore">Redis Documentation: SDIFFSTORE</a> * @see RedisSetCommands#sDiffStore(byte[], byte[]...) */ Long sDiffStore(String destKey, String... keys); /** * Get all elements of set at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/smembers">Redis Documentation: SMEMBERS</a> * @see RedisSetCommands#sMembers(byte[]) */ Set<String> sMembers(String key); /** * Get random element from set at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/srandmember">Redis Documentation: SRANDMEMBER</a> * @see RedisSetCommands#sRandMember(byte[]) */ String sRandMember(String key); /** * Get {@code count} random elements from set at {@code key}. * * @param key must not be {@literal null}. * @param count * @return * @see <a href="http://redis.io/commands/srandmember">Redis Documentation: SRANDMEMBER</a> * @see RedisSetCommands#sRem(byte[], byte[]...) */ List<String> sRandMember(String key, long count); /** * Use a {@link Cursor} to iterate over elements in set at {@code key}. * * @param key must not be {@literal null}. * @param options must not be {@literal null}. * @return * @since 1.4 * @see <a href="http://redis.io/commands/scan">Redis Documentation: SCAN</a> * @see RedisSetCommands#sScan(byte[], ScanOptions) */ Cursor<String> sScan(String key, ScanOptions options); // ------------------------------------------------------------------------- // Methods dealing with Redis Sorted Sets // ------------------------------------------------------------------------- /** * Add {@code value} to a sorted set at {@code key}, or update its {@code score} if it already exists. * * @param key must not be {@literal null}. * @param score the score. * @param value the value. * @return * @see <a href="http://redis.io/commands/zadd">Redis Documentation: ZADD</a> * @see RedisZSetCommands#zAdd(byte[], double, byte[]) */ Boolean zAdd(String key, double score, String value); /** * Add {@code tuples} to a sorted set at {@code key}, or update its {@code score} if it already exists. * * @param key must not be {@literal null}. * @param tuples the tuples. * @return * @see <a href="http://redis.io/commands/zadd">Redis Documentation: ZADD</a> * @see RedisZSetCommands#zAdd(byte[], Set) */ Long zAdd(String key, Set<StringTuple> tuples); /** * Remove {@code values} from sorted set. Return number of removed elements. * * @param key must not be {@literal null}. * @param values must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zrem">Redis Documentation: ZREM</a> * @see RedisZSetCommands#zRem(byte[], byte[]...) */ Long zRem(String key, String... values); /** * Increment the score of element with {@code value} in sorted set by {@code increment}. * * @param key must not be {@literal null}. * @param increment * @param value the value. * @return * @see <a href="http://redis.io/commands/zincrby">Redis Documentation: ZINCRBY</a> * @see RedisZSetCommands#zIncrBy(byte[], double, byte[]) */ Double zIncrBy(String key, double increment, String value); /** * Determine the index of element with {@code value} in a sorted set. * * @param key must not be {@literal null}. * @param value the value. * @return * @see <a href="http://redis.io/commands/zrank">Redis Documentation: ZRANK</a> * @see RedisZSetCommands#zRank(byte[], byte[]) */ Long zRank(String key, String value); /** * Determine the index of element with {@code value} in a sorted set when scored high to low. * * @param key must not be {@literal null}. * @param value the value. * @return * @see <a href="http://redis.io/commands/zrevrank">Redis Documentation: ZREVRANK</a> * @see RedisZSetCommands#zRevRank(byte[], byte[]) */ Long zRevRank(String key, String value); /** * Get elements between {@code start} and {@code end} from sorted set. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/zrange">Redis Documentation: ZRANGE</a> * @see RedisZSetCommands#zRange(byte[], long, long) */ Set<String> zRange(String key, long start, long end); /** * Get set of {@link Tuple}s between {@code start} and {@code end} from sorted set. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/zrange">Redis Documentation: ZRANGE</a> * @see RedisZSetCommands#zRangeWithScores(byte[], long, long) */ Set<StringTuple> zRangeWithScores(String key, long start, long end); /** * Get elements where score is between {@code min} and {@code max} from sorted set. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScore(byte[], double, double) */ Set<String> zRangeByScore(String key, double min, double max); /** * Get set of {@link Tuple}s where score is between {@code min} and {@code max} from sorted set. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScoreWithScores(byte[], double, double) */ Set<StringTuple> zRangeByScoreWithScores(String key, double min, double max); /** * Get elements in range from {@code start} to {@code end} where score is between {@code min} and {@code max} from * sorted set. * * @param key must not be {@literal null}. * @param min * @param max * @param offset * @param count * @return * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScore(byte[], double, double, long, long) */ Set<String> zRangeByScore(String key, double min, double max, long offset, long count); /** * Get set of {@link Tuple}s in range from {@code start} to {@code end} where score is between {@code min} and * {@code max} from sorted set. * * @param key * @param min * @param max * @param offset * @param count * @return * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScoreWithScores(byte[], double, double, long, long) */ Set<StringTuple> zRangeByScoreWithScores(String key, double min, double max, long offset, long count); /** * Get elements in range from {@code start} to {@code end} from sorted set ordered from high to low. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a> * @see RedisZSetCommands#zRevRange(byte[], long, long) */ Set<String> zRevRange(String key, long start, long end); /** * Get set of {@link Tuple}s in range from {@code start} to {@code end} from sorted set ordered from high to low. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a> * @see RedisZSetCommands#zRevRangeWithScores(byte[], long, long) */ Set<StringTuple> zRevRangeWithScores(String key, long start, long end); /** * Get elements where score is between {@code min} and {@code max} from sorted set ordered from high to low. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a> * @see RedisZSetCommands#zRevRangeByScore(byte[], double, double) */ Set<String> zRevRangeByScore(String key, double min, double max); /** * Get set of {@link Tuple} where score is between {@code min} and {@code max} from sorted set ordered from high to * low. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a> * @see RedisZSetCommands#zRevRangeByScoreWithScores(byte[], double, double) */ Set<StringTuple> zRevRangeByScoreWithScores(String key, double min, double max); /** * Get elements in range from {@code start} to {@code end} where score is between {@code min} and {@code max} from * sorted set ordered high -> low. * * @param key must not be {@literal null}. * @param min * @param max * @param offset * @param count * @return * @see <a href="http://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a> * @see RedisZSetCommands#zRevRangeByScore(byte[], double, double, long, long) */ Set<String> zRevRangeByScore(String key, double min, double max, long offset, long count); /** * Get set of {@link Tuple} in range from {@code start} to {@code end} where score is between {@code min} and * {@code max} from sorted set ordered high -> low. * * @param key must not be {@literal null}. * @param min * @param max * @param offset * @param count * @return * @see <a href="http://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a> * @see RedisZSetCommands#zRevRangeByScoreWithScores(byte[], double, double, long, long) */ Set<StringTuple> zRevRangeByScoreWithScores(String key, double min, double max, long offset, long count); /** * Count number of elements within sorted set with scores between {@code min} and {@code max}. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zcount">Redis Documentation: ZCOUNT</a> * @see RedisZSetCommands#zCount(byte[], double, double) */ Long zCount(String key, double min, double max); /** * Get the size of sorted set with {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zcard">Redis Documentation: ZCARD</a> * @see RedisZSetCommands#zCard(byte[]) */ Long zCard(String key); /** * Get the score of element with {@code value} from sorted set with key {@code key}. * * @param key must not be {@literal null}. * @param value the value. * @return * @see <a href="http://redis.io/commands/zrem">Redis Documentation: ZREM</a> * @see RedisZSetCommands#zScore(byte[], byte[]) */ Double zScore(String key, String value); /** * Remove elements in range between {@code start} and {@code end} from sorted set with {@code key}. * * @param key must not be {@literal null}. * @param start * @param end * @return * @see <a href="http://redis.io/commands/zremrangebyrank">Redis Documentation: ZREMRANGEBYRANK</a> * @see RedisZSetCommands#zRemRange(byte[], long, long) */ Long zRemRange(String key, long start, long end); /** * Remove elements with scores between {@code min} and {@code max} from sorted set with {@code key}. * * @param key must not be {@literal null}. * @param min * @param max * @return * @see <a href="http://redis.io/commands/zremrangebyscore">Redis Documentation: ZREMRANGEBYSCORE</a> * @see RedisZSetCommands#zRemRangeByScore(byte[], double, double) */ Long zRemRangeByScore(String key, double min, double max); /** * Union sorted {@code sets} and store result in destination {@code key}. * * @param destKey must not be {@literal null}. * @param sets must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zunionstore">Redis Documentation: ZUNIONSTORE</a> * @see RedisZSetCommands#zUnionStore(byte[], byte[]...) */ Long zUnionStore(String destKey, String... sets); /** * Union sorted {@code sets} and store result in destination {@code key}. * * @param destKey must not be {@literal null}. * @param aggregate must not be {@literal null}. * @param weights * @param sets must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zunionstore">Redis Documentation: ZUNIONSTORE</a> * @see RedisZSetCommands#zUnionStore(byte[], Aggregate, int[], byte[]...) */ Long zUnionStore(String destKey, Aggregate aggregate, int[] weights, String... sets); /** * Intersect sorted {@code sets} and store result in destination {@code key}. * * @param destKey must not be {@literal null}. * @param sets must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zinterstore">Redis Documentation: ZINTERSTORE</a> * @see RedisZSetCommands#zInterStore(byte[], byte[]...) */ Long zInterStore(String destKey, String... sets); /** * Intersect sorted {@code sets} and store result in destination {@code key}. * * @param destKey must not be {@literal null}. * @param aggregate must not be {@literal null}. * @param weights * @param sets must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/zinterstore">Redis Documentation: ZINTERSTORE</a> * @see RedisZSetCommands#zInterStore(byte[], Aggregate, int[], byte[]...) */ Long zInterStore(String destKey, Aggregate aggregate, int[] weights, String... sets); /** * Use a {@link Cursor} to iterate over elements in sorted set at {@code key}. * * @param key must not be {@literal null}. * @param options must not be {@literal null}. * @return * @since 1.4 * @see <a href="http://redis.io/commands/zscan">Redis Documentation: ZSCAN</a> * @see RedisZSetCommands#zScan(byte[], ScanOptions) */ Cursor<StringTuple> zScan(String key, ScanOptions options); /** * Get elements where score is between {@code min} and {@code max} from sorted set. * * @param key must not be {@literal null}. * @param min must not be {@literal null}. * @param max must not be {@literal null}. * @return * @since 1.5 * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScore(byte[], String, String) */ Set<byte[]> zRangeByScore(String key, String min, String max); /** * Get elements in range from {@code start} to {@code end} where score is between {@code min} and {@code max} from * sorted set. * * @param key must not be {@literal null}. * @param min must not be {@literal null}. * @param max must not be {@literal null}. * @param offset * @param count * @return * @since 1.5 * @see <a href="http://redis.io/commands/zrangebyscore">Redis Documentation: ZRANGEBYSCORE</a> * @see RedisZSetCommands#zRangeByScore(byte[], double, double, long, long) */ Set<byte[]> zRangeByScore(String key, String min, String max, long offset, long count); /** * Get all the elements in the sorted set at {@literal key} in lexicographical ordering. * * @param key must not be {@literal null}. * @return * @since 1.6 * @see <a href="http://redis.io/commands/zrangebylex">Redis Documentation: ZRANGEBYLEX</a> * @see RedisZSetCommands#zRangeByLex(byte[]) */ Set<String> zRangeByLex(String key); /** * Get all the elements in {@link Range} from the sorted set at {@literal key} in lexicographical ordering. * * @param key must not be {@literal null}. * @param range must not be {@literal null}. * @return * @since 1.6 * @see <a href="http://redis.io/commands/zrangebylex">Redis Documentation: ZRANGEBYLEX</a> * @see RedisZSetCommands#zRangeByLex(byte[], Range) */ Set<String> zRangeByLex(String key, Range range); /** * Get all the elements in {@link Range} from the sorted set at {@literal key} in lexicographical ordering. Result is * limited via {@link Limit}. * * @param key must not be {@literal null}. * @param range must not be {@literal null}. * @param range can be {@literal null}. * @return * @since 1.6 * @see <a href="http://redis.io/commands/zrangebylex">Redis Documentation: ZRANGEBYLEX</a> * @see RedisZSetCommands#zRangeByLex(byte[], Range, Limit) */ Set<String> zRangeByLex(String key, Range range, Limit limit); // ------------------------------------------------------------------------- // Methods dealing with Redis Hashes // ------------------------------------------------------------------------- /** * Set the {@code value} of a hash {@code field}. * * @param key must not be {@literal null}. * @param field must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/hset">Redis Documentation: HSET</a> * @see RedisHashCommands#hSet(byte[], byte[], byte[]) */ Boolean hSet(String key, String field, String value); /** * Set the {@code value} of a hash {@code field} only if {@code field} does not exist. * * @param key must not be {@literal null}. * @param field must not be {@literal null}. * @param value * @return * @see <a href="http://redis.io/commands/hsetnx">Redis Documentation: HSETNX</a> * @see RedisHashCommands#hSetNX(byte[], byte[], byte[]) */ Boolean hSetNX(String key, String field, String value); /** * Get value for given {@code field} from hash at {@code key}. * * @param key must not be {@literal null}. * @param field must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hget">Redis Documentation: HGET</a> * @see RedisHashCommands#hGet(byte[], byte[]) */ String hGet(String key, String field); /** * Get values for given {@code fields} from hash at {@code key}. * * @param key must not be {@literal null}. * @param fields must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hmget">Redis Documentation: HMGET</a> * @see RedisHashCommands#hMGet(byte[], byte[]...) */ List<String> hMGet(String key, String... fields); /** * Set multiple hash fields to multiple values using data provided in {@code hashes} * * @param key must not be {@literal null}. * @param hashes must not be {@literal null}. * @see <a href="http://redis.io/commands/hmset">Redis Documentation: HMSET</a> * @see RedisHashCommands#hMGet(byte[], byte[]...) */ void hMSet(String key, Map<String, String> hashes); /** * Increment {@code value} of a hash {@code field} by the given {@code delta}. * * @param key must not be {@literal null}. * @param field must not be {@literal null}. * @param delta * @return * @see <a href="http://redis.io/commands/hincrby">Redis Documentation: HINCRBY</a> * @see RedisHashCommands#hIncrBy(byte[], byte[], long) */ Long hIncrBy(String key, String field, long delta); /** * Increment {@code value} of a hash {@code field} by the given {@code delta}. * * @param key must not be {@literal null}. * @param field * @param delta * @return * @see <a href="http://redis.io/commands/hincrbyfloat">Redis Documentation: HINCRBYFLOAT</a> * @see RedisHashCommands#hIncrBy(byte[], byte[], double) */ Double hIncrBy(String key, String field, double delta); /** * Determine if given hash {@code field} exists. * * @param key must not be {@literal null}. * @param field must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hexits">Redis Documentation: HEXISTS</a> * @see RedisHashCommands#hExists(byte[], byte[]) */ Boolean hExists(String key, String field); /** * Delete given hash {@code fields}. * * @param key must not be {@literal null}. * @param fields must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hdel">Redis Documentation: HDEL</a> * @see RedisHashCommands#hDel(byte[], byte[]...) */ Long hDel(String key, String... fields); /** * Get size of hash at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hlen">Redis Documentation: HLEN</a> * @see RedisHashCommands#hLen(byte[]) */ Long hLen(String key); /** * Get key set (fields) of hash at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hkeys">Redis Documentation: HKEYS</a>? * @see RedisHashCommands#hKeys(byte[]) */ Set<String> hKeys(String key); /** * Get entry set (values) of hash at {@code field}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hvals">Redis Documentation: HVALS</a> * @see RedisHashCommands#hVals(byte[]) */ List<String> hVals(String key); /** * Get entire hash stored at {@code key}. * * @param key must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/hgetall">Redis Documentation: HGETALL</a> * @see RedisHashCommands#hGetAll(byte[]) */ Map<String, String> hGetAll(String key); /** * Use a {@link Cursor} to iterate over entries in hash at {@code key}. * * @param key must not be {@literal null}. * @param options must not be {@literal null}. * @return * @since 1.4 * @see <a href="http://redis.io/commands/hscan">Redis Documentation: HSCAN</a> * @see RedisHashCommands#hScan(byte[], ScanOptions) */ Cursor<Map.Entry<String, String>> hScan(String key, ScanOptions options); // ------------------------------------------------------------------------- // Methods dealing with HyperLogLog // ------------------------------------------------------------------------- /** * Adds given {@literal values} to the HyperLogLog stored at given {@literal key}. * * @param key must not be {@literal null}. * @param values must not be {@literal null}. * @return * @since 1.5 * @see <a href="http://redis.io/commands/pfadd">Redis Documentation: PFADD</a> * @see RedisHyperLogLogCommands#pfAdd(byte[], byte[]...) */ Long pfAdd(String key, String... values); /** * Return the approximated cardinality of the structures observed by the HyperLogLog at {@literal key(s)}. * * @param keys must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/pfcount">Redis Documentation: PFCOUNT</a> * @see RedisHyperLogLogCommands#pfCount(byte[]...) */ Long pfCount(String... keys); /** * Merge N different HyperLogLogs at {@literal sourceKeys} into a single {@literal destinationKey}. * * @param destinationKey must not be {@literal null}. * @param sourceKeys must not be {@literal null}. * @see <a href="http://redis.io/commands/pfmerge">Redis Documentation: PFMERGE</a> * @see RedisHyperLogLogCommands#pfMerge(byte[], byte[]...) */ void pfMerge(String destinationKey, String... sourceKeys); // ------------------------------------------------------------------------- // Methods dealing with Redis Geo-Indexes // ------------------------------------------------------------------------- /** * Add {@link Point} with given member {@literal name} to {@literal key}. * * @param key must not be {@literal null}. * @param point must not be {@literal null}. * @param member must not be {@literal null}. * @return Number of elements added. * @since 1.8 * @see <a href="http://redis.io/commands/geoadd">Redis Documentation: GEOADD</a> * @see RedisGeoCommands#geoAdd(byte[], Point, byte[]) */ Long geoAdd(String key, Point point, String member); /** * Add {@link GeoLocation} to {@literal key}. * * @param key must not be {@literal null}. * @param location must not be {@literal null}. * @return Number of elements added. * @since 1.8 * @see <a href="http://redis.io/commands/geoadd">Redis Documentation: GEOADD</a> * @see RedisGeoCommands#geoAdd(byte[], GeoLocation) */ Long geoAdd(String key, GeoLocation<String> location); /** * Add {@link Map} of member / {@link Point} pairs to {@literal key}. * * @param key must not be {@literal null}. * @param memberCoordinateMap must not be {@literal null}. * @return Number of elements added. * @since 1.8 * @see <a href="http://redis.io/commands/geoadd">Redis Documentation: GEOADD</a> * @see RedisGeoCommands#geoAdd(byte[], Map) */ Long geoAdd(String key, Map<String, Point> memberCoordinateMap); /** * Add {@link GeoLocation}s to {@literal key} * * @param key must not be {@literal null}. * @param locations must not be {@literal null}. * @return Number of elements added. * @since 1.8 * @see <a href="http://redis.io/commands/geoadd">Redis Documentation: GEOADD</a> * @see RedisGeoCommands#geoAdd(byte[], Iterable) */ Long geoAdd(String key, Iterable<GeoLocation<String>> locations); /** * Get the {@link Distance} between {@literal member1} and {@literal member2}. * * @param key must not be {@literal null}. * @param member1 must not be {@literal null}. * @param member2 must not be {@literal null}. * @return can be {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/geodist">Redis Documentation: GEODIST</a> * @see RedisGeoCommands#geoDist(byte[], byte[], byte[]) */ Distance geoDist(String key, String member1, String member2); /** * Get the {@link Distance} between {@literal member1} and {@literal member2} in the given {@link Metric}. * * @param key must not be {@literal null}. * @param member1 must not be {@literal null}. * @param member2 must not be {@literal null}. * @param metric must not be {@literal null}. * @return can be {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/geodist">Redis Documentation: GEODIST</a> * @see RedisGeoCommands#geoDist(byte[], byte[], byte[], Metric) */ Distance geoDist(String key, String member1, String member2, Metric metric); /** * Get geohash representation of the position for one or more {@literal member}s. * * @param key must not be {@literal null}. * @param members must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/geohash">Redis Documentation: GEOHASH</a> * @see RedisGeoCommands#geoHash(byte[], byte[]...) */ List<String> geoHash(String key, String... members); /** * Get the {@link Point} representation of positions for one or more {@literal member}s. * * @param key must not be {@literal null}. * @param members must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/geopos">Redis Documentation: GEOPOS</a> * @see RedisGeoCommands#geoPos(byte[], byte[]...) */ List<Point> geoPos(String key, String... members); /** * Get the {@literal member}s within the boundaries of a given {@link Circle}. * * @param key must not be {@literal null}. * @param within must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/georadius">Redis Documentation: GEORADIUS</a> * @see RedisGeoCommands#geoRadius(byte[], Circle) */ GeoResults<GeoLocation<String>> geoRadius(String key, Circle within); /** * Get the {@literal member}s within the boundaries of a given {@link Circle} applying {@link GeoRadiusCommandArgs}. * * @param key must not be {@literal null}. * @param within must not be {@literal null}. * @param args must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/georadius">Redis Documentation: GEORADIUS</a> * @see RedisGeoCommands#geoRadius(byte[], Circle, GeoRadiusCommandArgs) */ GeoResults<GeoLocation<String>> geoRadius(String key, Circle within, GeoRadiusCommandArgs args); /** * Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given * {@literal radius}. * * @param key must not be {@literal null}. * @param member must not be {@literal null}. * @param radius * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/georadiusbymember">Redis Documentation: GEORADIUSBYMEMBER</a> * @see RedisGeoCommands#geoRadiusByMember(byte[], byte[], double) */ GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, double radius); /** * Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given * {@link Distance}. * * @param key must not be {@literal null}. * @param member must not be {@literal null}. * @param radius must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/georadiusbymember">Redis Documentation: GEORADIUSBYMEMBER</a> * @see RedisGeoCommands#geoRadiusByMember(byte[], byte[], Distance) */ GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius); /** * Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given * {@link Distance} and {@link GeoRadiusCommandArgs}. * * @param key must not be {@literal null}. * @param member must not be {@literal null}. * @param radius must not be {@literal null}. * @param args must not be {@literal null}. * @return never {@literal null}. * @since 1.8 * @see <a href="http://redis.io/commands/georadiusbymember">Redis Documentation: GEORADIUSBYMEMBER</a> * @see RedisGeoCommands#geoRadiusByMember(byte[], byte[], Distance, GeoRadiusCommandArgs) */ GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius, GeoRadiusCommandArgs args); /** * Remove the {@literal member}s. * * @param key must not be {@literal null}. * @param members must not be {@literal null}. * @since 1.8 * @return Number of members elements removed. * @see <a href="http://redis.io/commands/zrem">Redis Documentation: ZREM</a> * @see RedisGeoCommands#geoRemove(byte[], byte[]...) */ Long geoRemove(String key, String... members); // ------------------------------------------------------------------------- // Methods dealing with Redis Pub/Sub // ------------------------------------------------------------------------- /** * Publishes the given message to the given channel. * * @param channel the channel to publish to, must not be {@literal null}. * @param message message to publish * @return the number of clients that received the message * @see <a href="http://redis.io/commands/publish">Redis Documentation: PUBLISH</a> * @see RedisPubSubCommands#publish(byte[], byte[]) */ Long publish(String channel, String message); /** * Subscribes the connection to the given channels. Once subscribed, a connection enters listening mode and can only * subscribe to other channels or unsubscribe. No other commands are accepted until the connection is unsubscribed. * <p> * Note that this operation is blocking and the current thread starts waiting for new messages immediately. * * @param listener message listener, must not be {@literal null}. * @param channels channel names, must not be {@literal null}. * @see <a href="http://redis.io/commands/subscribe">Redis Documentation: SUBSCRIBE</a> * @see RedisPubSubCommands#subscribe(MessageListener, byte[]...) */ void subscribe(MessageListener listener, String... channels); /** * Subscribes the connection to all channels matching the given patterns. Once subscribed, a connection enters * listening mode and can only subscribe to other channels or unsubscribe. No other commands are accepted until the * connection is unsubscribed. * <p> * Note that this operation is blocking and the current thread starts waiting for new messages immediately. * * @param listener message listener, must not be {@literal null}. * @param patterns channel name patterns, must not be {@literal null}. * @see <a href="http://redis.io/commands/psubscribe">Redis Documentation: PSUBSCRIBE</a> * @see RedisPubSubCommands#pSubscribe(MessageListener, byte[]...) */ void pSubscribe(MessageListener listener, String... patterns); // ------------------------------------------------------------------------- // Methods dealing with Redis Lua Scripting // ------------------------------------------------------------------------- /** * Load lua script into scripts cache, without executing it.<br> * Execute the script by calling {@link #evalSha(byte[], ReturnType, int, byte[]...)}. * * @param script must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/script-load">Redis Documentation: SCRIPT LOAD</a> * @see RedisScriptingCommands#scriptLoad(byte[]) */ String scriptLoad(String script); /** * Evaluate given {@code script}. * * @param script must not be {@literal null}. * @param returnType must not be {@literal null}. * @param numKeys * @param keysAndArgs must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/eval">Redis Documentation: EVAL</a> * @see RedisScriptingCommands#eval(byte[], ReturnType, int, byte[]...) */ <T> T eval(String script, ReturnType returnType, int numKeys, String... keysAndArgs); /** * Evaluate given {@code scriptSha}. * * @param scriptSha must not be {@literal null}. * @param returnType must not be {@literal null}. * @param numKeys * @param keysAndArgs must not be {@literal null}. * @return * @see <a href="http://redis.io/commands/evalsha">Redis Documentation: EVALSHA</a> * @see RedisScriptingCommands#evalSha(String, ReturnType, int, byte[]...) */ <T> T evalSha(String scriptSha, ReturnType returnType, int numKeys, String... keysAndArgs); /** * Assign given name to current connection. * * @param name * @since 1.3 * @see <a href="http://redis.io/commands/client-setname">Redis Documentation: CLIENT SETNAME</a> * @see RedisServerCommands#setClientName(byte[]) */ void setClientName(String name); /** * Request information and statistics about connected clients. * * @return {@link List} of {@link RedisClientInfo} objects. * @since 1.3 * @see <a href="http://redis.io/commands/client-list">Redis Documentation: CLIENT LIST</a> * @see RedisServerCommands#getClientList() */ List<RedisClientInfo> getClientList(); }