Uses of Interface
org.springframework.data.redis.core.BoundListOperations
Packages that use 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
Methods in org.springframework.data.redis.core that return BoundListOperationsModifier 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
Methods in org.springframework.data.redis.support.collections with parameters of type BoundListOperationsModifier and TypeMethodDescriptionstatic <E> RedisList<E>RedisList.create(BoundListOperations<String, E> boundOps) Constructs a new, uncappedDefaultRedisListinstance.static <E> RedisList<E>RedisList.create(BoundListOperations<String, E> boundOps, int maxSize) Constructs a newDefaultRedisListinstance.Constructors in org.springframework.data.redis.support.collections with parameters of type BoundListOperationsModifierConstructorDescriptionDefaultRedisList(BoundListOperations<String, E> boundOps) Constructs a new, uncappedDefaultRedisListinstance.DefaultRedisList(BoundListOperations<String, E> boundOps, int maxSize) Constructs a newDefaultRedisListinstance.