Uses of Class
org.springframework.data.redis.connection.Limit
Packages that use Limit
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Connection package for Lettuce Redis client.
Core package for integrating Redis with Spring concepts.
Package providing implementations for most of the
java.util
collections on top of Redis.-
Uses of Limit in org.springframework.data.redis.connection
Subclasses of Limit in org.springframework.data.redis.connectionMethods in org.springframework.data.redis.connection that return LimitModifier and TypeMethodDescriptionLimit.count
(int count) ReactiveStreamCommands.RangeCommand.getLimit()
ReactiveZSetCommands.ZRangeByLexCommand.getLimit()
static Limit
Limit.limit()
Limit.offset
(int offset) static Limit
Limit.unlimited()
Methods in org.springframework.data.redis.connection that return types with arguments of type LimitMethods in org.springframework.data.redis.connection with parameters of type LimitModifier and TypeMethodDescriptionApplies aLimit
.Applies theLimit
.Applies theLimit
.default List<ByteRecord>
Deprecated.in favor ofRedisCommandsProvider.streamCommands()
}.default reactor.core.publisher.Flux<ByteBufferRecord>
ReactiveStreamCommands.xRange
(ByteBuffer key, Range<String> range, Limit limit) Read records from a stream within a specificRedisZSetCommands.Range
applying aLimit
.default List<ByteRecord>
Deprecated.in favor ofRedisCommandsProvider.streamCommands()
}.default reactor.core.publisher.Flux<ByteBufferRecord>
ReactiveStreamCommands.xRevRange
(ByteBuffer key, Range<String> range, Limit limit) Read records from a stream within a specificRedisZSetCommands.Range
applying aLimit
in reverse order.default Set<byte[]>
DefaultedRedisConnection.zRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.Set<byte[]>
DefaultStringRedisConnection.zRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) DefaultStringRedisConnection.zRangeByLex
(String key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<ByteBuffer>
ReactiveZSetCommands.zRangeByLex
(ByteBuffer key, Range<String> range, Limit limit) Get all elements inRange
from the sorted set at key in lexicographical ordering.Set<byte[]>
RedisZSetCommands.zRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get all the elements inRedisZSetCommands.Range
from the sorted set at key in lexicographical ordering.StringRedisConnection.zRangeByLex
(String key, RedisZSetCommands.Range range, Limit limit) Get all the elements inRedisZSetCommands.Range
from the sorted set at key in lexicographical ordering.default Set<byte[]>
DefaultedRedisConnection.zRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.Set<byte[]>
DefaultStringRedisConnection.zRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<ByteBuffer>
ReactiveZSetCommands.zRangeByScore
(ByteBuffer key, Range<Double> range, Limit limit) Get elements in range from sorted set.Set<byte[]>
RedisZSetCommands.zRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get elements in range fromLimit#count
toLimit#offset
where score is betweenRange#min
andRange#max
from sorted set.DefaultedRedisConnection.zRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.DefaultStringRedisConnection.zRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<Tuple>
ReactiveZSetCommands.zRangeByScoreWithScores
(ByteBuffer key, Range<Double> range, Limit limit) GetTuple
s in range from sorted set.RedisZSetCommands.zRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get set ofTuple
s in range fromLimit#offset
toLimit#offset + Limit#count
where score is betweenRange#min
andRange#max
from sorted set.default Set<byte[]>
DefaultedRedisConnection.zRevRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.Set<byte[]>
DefaultStringRedisConnection.zRevRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) DefaultStringRedisConnection.zRevRangeByLex
(String key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<ByteBuffer>
ReactiveZSetCommands.zRevRangeByLex
(ByteBuffer key, Range<String> range, Limit limit) Get all elements inRange
from the sorted set at key in lexicographical ordering.Set<byte[]>
RedisZSetCommands.zRevRangeByLex
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get all the elements inRedisZSetCommands.Range
from the sorted set at key in reversed lexicographical ordering.StringRedisConnection.zRevRangeByLex
(String key, RedisZSetCommands.Range range, Limit limit) Get all the elements inRedisZSetCommands.Range
from the sorted set at key in reversed lexicographical ordering.default Set<byte[]>
DefaultedRedisConnection.zRevRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.Set<byte[]>
DefaultStringRedisConnection.zRevRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<ByteBuffer>
ReactiveZSetCommands.zRevRangeByScore
(ByteBuffer key, Range<Double> range, Limit limit) Get elements in range from sorted set in reverse score ordering.Set<byte[]>
RedisZSetCommands.zRevRangeByScore
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get elements in range fromLimit#offset
toLimit#offset + Limit#count
where score is betweenRange#min
andRange#max
from sorted set ordered high -> low.DefaultedRedisConnection.zRevRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.DefaultStringRedisConnection.zRevRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) default reactor.core.publisher.Flux<Tuple>
ReactiveZSetCommands.zRevRangeByScoreWithScores
(ByteBuffer key, Range<Double> range, Limit limit) GetTuple
s in range from sorted set in reverse score ordering.RedisZSetCommands.zRevRangeByScoreWithScores
(byte[] key, RedisZSetCommands.Range range, Limit limit) Get set ofTuple
in range fromLimit#offset
toLimit#count
where score is betweenRange#min
andRange#max
from sorted set ordered high -> low. -
Uses of Limit in org.springframework.data.redis.connection.lettuce
Methods in org.springframework.data.redis.connection.lettuce with parameters of type Limit -
Uses of Limit in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type LimitModifier and TypeMethodDescriptiondefault <V> reactor.core.publisher.Flux<ObjectRecord<K,
V>> default <V> List<ObjectRecord<K,
V>> BoundZSetOperations.rangeByLex
(RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with lexicographical ordering having a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.reactor.core.publisher.Flux<V>
ReactiveZSetOperations.rangeByLex
(K key, Range<String> range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with lexicographical ordering from ZSET atkey
with a value betweenRange.getLowerBound()
andRange.getUpperBound()
.ZSetOperations.rangeByLex
(K key, RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with lexicographical ordering from ZSET atkey
with a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.reactor.core.publisher.Flux<V>
ReactiveZSetOperations.rangeByScore
(K key, Range<Double> range, Limit limit) Get elements in range fromstart
toend
where score is betweenmin
andmax
from sorted set.reactor.core.publisher.Flux<ZSetOperations.TypedTuple<V>>
ReactiveZSetOperations.rangeByScoreWithScores
(K key, Range<Double> range, Limit limit) BoundStreamOperations.reverseRange
(Range<String> range, Limit limit) default <V> reactor.core.publisher.Flux<ObjectRecord<K,
V>> Read records from a stream within a specificRange
applying aLimit
in reverse order asObjectRecord
.ReactiveStreamOperations.reverseRange
(K key, Range<String> range, Limit limit) default <V> List<ObjectRecord<K,
V>> Read records from a stream within a specificRange
applying aLimit
in reverse order asObjectRecord
.StreamOperations.reverseRange
(K key, Range<String> range, Limit limit) BoundZSetOperations.reverseRangeByLex
(RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with reverse lexicographical ordering having a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.reactor.core.publisher.Flux<V>
ReactiveZSetOperations.reverseRangeByLex
(K key, Range<String> range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with reverse lexicographical ordering from ZSET atkey
with a value betweenRange.getLowerBound()
andRange.getUpperBound()
.ZSetOperations.reverseRangeByLex
(K key, RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with reverse lexicographical ordering from ZSET atkey
with a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.reactor.core.publisher.Flux<V>
ReactiveZSetOperations.reverseRangeByScore
(K key, Range<Double> range, Limit limit) Get elements in range fromstart
toend
where score is betweenmin
andmax
from sorted set ordered high -> low.reactor.core.publisher.Flux<ZSetOperations.TypedTuple<V>>
ReactiveZSetOperations.reverseRangeByScoreWithScores
(K key, Range<Double> range, Limit limit) Get set ofTuple
in range fromstart
toend
where score is betweenmin
andmax
from sorted set ordered high -> low. -
Uses of Limit in org.springframework.data.redis.support.collections
Methods in org.springframework.data.redis.support.collections with parameters of type LimitModifier and TypeMethodDescriptionDefaultRedisZSet.rangeByLex
(RedisZSetCommands.Range range, Limit limit) RedisZSet.rangeByLex
(RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with lexicographical ordering having a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.DefaultRedisZSet.reverseRangeByLex
(RedisZSetCommands.Range range, Limit limit) RedisZSet.reverseRangeByLex
(RedisZSetCommands.Range range, Limit limit) Get all elements n elements, where n =getCount()
, starting atgetOffset()
with reverse lexicographical ordering having a value betweenRedisZSetCommands.Range.getMin()
andRedisZSetCommands.Range.getMax()
.
Limit
instead.