Package org.springframework.data.redis.support.collections
@NonNullApi
@NonNullFields
package org.springframework.data.redis.support.collections
Package providing implementations for most of the
java.util collections on top of Redis.
For indexed collections, such as List, Queue or Deque consider
RedisList.
For collections without duplicates the obvious candidate is
RedisSet. Use
RedisZSet if a certain order is required.
Lastly, for key/value associations RedisMap providing a
Map-like abstraction on top of a Redis hash.
-
ClassDescriptionBase implementation for
RedisCollection.Utility class used mainly for type conversion by the default collection implementations.Default implementation forRedisList.DefaultRedisMap<K,V> Default implementation forRedisMap.Default implementation forRedisSet.Default implementation forRedisZSet.Redis extension for theCollectioncontract.Factory bean that facilitates creation of Redis-based collections.Collection types supported by this factory.RedisList<E>Redis extension for theListcontract.RedisMap<K,V> Map view of a Redis hash.Propertiesextension for a Redis back-store.RedisSet<E>Redis extension for theSetcontract.Basic interface for Redis-based collections.RedisZSet<E>Redis ZSet (or sorted set (by weight)).