Uses of Interface
org.springframework.data.redis.core.BoundListOperations
Package
Description
Core package for integrating Redis with Spring concepts.
Package providing implementations for most of the
java.util
collections on top of Redis.-
Uses of BoundListOperations in org.springframework.data.redis.core
Modifier and TypeMethodDescriptionRedisOperations.boundListOps
(K key) Returns the operations performed on list values bound to the given key.RedisTemplate.boundListOps
(K key) -
Uses of BoundListOperations in org.springframework.data.redis.support.collections
Modifier and TypeMethodDescriptionstatic <E> RedisList<E>
RedisList.create
(BoundListOperations<String, E> boundOps) Constructs a new, uncappedDefaultRedisList
instance.static <E> RedisList<E>
RedisList.create
(BoundListOperations<String, E> boundOps, int maxSize) Constructs a newDefaultRedisList
.ModifierConstructorDescriptionDefaultRedisList
(BoundListOperations<String, E> boundOps) Constructs a new, uncappedDefaultRedisList
instance.DefaultRedisList
(BoundListOperations<String, E> boundOps, int maxSize) Constructs a newDefaultRedisList
instance constrained to the givenmax size
.