Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with
the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.jredis |
Connection package for JRedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
org.springframework.data.redis.connection.srp |
Connection package for spullara Redis Protocol library.
|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
org.springframework.data.redis.support.collections |
Package providing implementations for most of the
java.util collections on top of Redis. |
Modifier and Type | Method and Description |
---|---|
RedisZSetCommands.Limit |
RedisZSetCommands.Limit.count(int count) |
static RedisZSetCommands.Limit |
RedisZSetCommands.Limit.limit() |
RedisZSetCommands.Limit |
RedisZSetCommands.Limit.offset(int offset) |
Modifier and Type | Method and Description |
---|---|
Set<byte[]> |
DefaultStringRedisConnection.zRangeByLex(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<byte[]> |
RedisZSetCommands.zRangeByLex(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get all the elements in
RedisZSetCommands.Range from the sorted set at key in lexicographical ordering. |
Set<String> |
DefaultStringRedisConnection.zRangeByLex(String key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<String> |
StringRedisConnection.zRangeByLex(String key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get all the elements in
Range from the sorted set at key in lexicographical ordering. |
Set<byte[]> |
DefaultStringRedisConnection.zRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<byte[]> |
RedisZSetCommands.zRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get elements in range from
Limit#count to Limit#offset where score is between Range#min and
Range#max from sorted set. |
Set<RedisZSetCommands.Tuple> |
DefaultStringRedisConnection.zRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<RedisZSetCommands.Tuple> |
RedisZSetCommands.zRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get set of
RedisZSetCommands.Tuple s in range from Limit#offset to Limit#offset + Limit#count where score is
between Range#min and Range#max from sorted set. |
Set<byte[]> |
DefaultStringRedisConnection.zRevRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<byte[]> |
RedisZSetCommands.zRevRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get elements in range from
Limit#offset to Limit#offset + Limit#count where score is between
Range#min and Range#max from sorted set ordered high -> low. |
Set<RedisZSetCommands.Tuple> |
DefaultStringRedisConnection.zRevRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<RedisZSetCommands.Tuple> |
RedisZSetCommands.zRevRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get set of
RedisZSetCommands.Tuple in range from Limit#offset to Limit#count where score is between
Range#min and Range#max from sorted set ordered high -> low. |
Modifier and Type | Method and Description |
---|---|
Set<byte[]> |
JredisConnection.zRangeByLex(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<byte[]> |
JredisConnection.zRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<RedisZSetCommands.Tuple> |
JredisConnection.zRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<byte[]> |
JredisConnection.zRevRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<RedisZSetCommands.Tuple> |
JredisConnection.zRevRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Set<byte[]> |
LettuceConnection.zRangeByLex(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<byte[]> |
LettuceConnection.zRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<RedisZSetCommands.Tuple> |
LettuceConnection.zRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<byte[]> |
LettuceConnection.zRevRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<RedisZSetCommands.Tuple> |
LettuceConnection.zRevRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Modifier and Type | Method and Description |
---|---|
Set<byte[]> |
SrpConnection.zRangeByLex(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<byte[]> |
SrpConnection.zRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<RedisZSetCommands.Tuple> |
SrpConnection.zRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<byte[]> |
SrpConnection.zRevRangeByScore(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Set<RedisZSetCommands.Tuple> |
SrpConnection.zRevRangeByScoreWithScores(byte[] key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Set<V> |
ZSetOperations.rangeByLex(K key,
RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get all elements n elements, where n =
getCount() , starting at
getOffset() with lexicographical ordering from ZSET at key with a value between
RedisZSetCommands.Range.getMin() and RedisZSetCommands.Range.getMax() . |
Set<V> |
BoundZSetOperations.rangeByLex(RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get all elements n elements, where n =
getCount() , starting at
getOffset() with lexicographical ordering having a value between RedisZSetCommands.Range.getMin() and
RedisZSetCommands.Range.getMax() . |
Modifier and Type | Method and Description |
---|---|
Set<E> |
DefaultRedisZSet.rangeByLex(RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit) |
Set<E> |
RedisZSet.rangeByLex(RedisZSetCommands.Range range,
RedisZSetCommands.Limit limit)
Get all elements n elements, where n =
getCount() , starting at
getOffset() with lexicographical ordering having a value between RedisZSetCommands.Range.getMin() and
RedisZSetCommands.Range.getMax() . |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.