Uses of Class
redis.clients.jedis.SortingParams
-
Packages that use SortingParams Package Description redis.clients.jedis redis.clients.jedis.commands -
-
Uses of SortingParams in redis.clients.jedis
Methods in redis.clients.jedis that return SortingParams Modifier and Type Method Description SortingParams
SortingParams. alpha()
Sort lexicographicaly.SortingParams
SortingParams. asc()
Get the Sorting in Ascending Order.SortingParams
SortingParams. by(byte[] pattern)
Sort by weight in keys.SortingParams
SortingParams. by(String pattern)
Sort by weight in keys.SortingParams
SortingParams. desc()
Get the Sorting in Descending Order.SortingParams
SortingParams. get(byte[]... patterns)
Retrieving external keys from the result of the search.SortingParams
SortingParams. get(String... patterns)
Retrieving external keys from the result of the search.SortingParams
SortingParams. limit(int start, int count)
Limit the Numbers of returned Elements.SortingParams
SortingParams. nosort()
No sorting.Methods in redis.clients.jedis with parameters of type SortingParams Modifier and Type Method Description void
BinaryClient. sort(byte[] key, SortingParams sortingParameters)
void
BinaryClient. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
List<byte[]>
BinaryJedis. sort(byte[] key, SortingParams sortingParameters)
Sort a Set or a List accordingly to the specified parameters.Long
BinaryJedis. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
Sort a Set or a List accordingly to the specified parameters and store the result at dstkey.List<byte[]>
BinaryJedisCluster. sort(byte[] key, SortingParams sortingParameters)
Long
BinaryJedisCluster. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
List<byte[]>
BinaryShardedJedis. sort(byte[] key, SortingParams sortingParameters)
void
Client. sort(String key, SortingParams sortingParameters)
void
Client. sort(String key, SortingParams sortingParameters, String dstkey)
List<String>
Jedis. sort(String key, SortingParams sortingParameters)
Sort a Set or a List accordingly to the specified parameters.Long
Jedis. sort(String key, SortingParams sortingParameters, String dstkey)
Sort a Set or a List accordingly to the specified parameters and store the result at dstkey.List<String>
JedisCluster. sort(String key, SortingParams sortingParameters)
Long
JedisCluster. sort(String key, SortingParams sortingParameters, String dstkey)
Response<Long>
MultiKeyPipelineBase. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
Response<Long>
MultiKeyPipelineBase. sort(String key, SortingParams sortingParameters, String dstkey)
Response<List<byte[]>>
PipelineBase. sort(byte[] key, SortingParams sortingParameters)
Response<List<String>>
PipelineBase. sort(String key, SortingParams sortingParameters)
List<String>
ShardedJedis. sort(String key, SortingParams sortingParameters)
-
Uses of SortingParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type SortingParams Modifier and Type Method Description List<byte[]>
BinaryJedisClusterCommands. sort(byte[] key, SortingParams sortingParameters)
List<byte[]>
BinaryJedisCommands. sort(byte[] key, SortingParams sortingParameters)
Response<List<byte[]>>
BinaryRedisPipeline. sort(byte[] key, SortingParams sortingParameters)
void
Commands. sort(String key, SortingParams sortingParameters)
void
Commands. sort(String key, SortingParams sortingParameters, String dstkey)
List<String>
JedisClusterCommands. sort(String key, SortingParams sortingParameters)
List<String>
JedisCommands. sort(String key, SortingParams sortingParameters)
Long
MultiKeyBinaryCommands. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
Long
MultiKeyBinaryJedisClusterCommands. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
Response<Long>
MultiKeyBinaryRedisPipeline. sort(byte[] key, SortingParams sortingParameters, byte[] dstkey)
Long
MultiKeyCommands. sort(String key, SortingParams sortingParameters, String dstkey)
Response<Long>
MultiKeyCommandsPipeline. sort(String key, SortingParams sortingParameters, String dstkey)
Long
MultiKeyJedisClusterCommands. sort(String key, SortingParams sortingParameters, String dstkey)
Response<List<String>>
RedisPipeline. sort(String key, SortingParams sortingParameters)
-