public class RedisMetadataStore extends java.lang.Object implements MetadataStore
MetadataStore
. Use this MetadataStore
to achieve meta-data persistence across application restarts.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
KEY |
Constructor and Description |
---|
RedisMetadataStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory)
|
RedisMetadataStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory,
java.lang.String key)
Initializes the
RedisProperties by provided RedisConnectionFactory and key. |
RedisMetadataStore(org.springframework.data.redis.core.RedisOperations<java.lang.String,?> operations)
|
RedisMetadataStore(org.springframework.data.redis.core.RedisOperations<java.lang.String,?> operations,
java.lang.String key)
Initializes the
RedisProperties by provided RedisConnectionFactory and key. |
RedisMetadataStore(org.springframework.data.redis.support.collections.RedisProperties properties)
Specifies the
RedisProperties backend for this MetadataStore . |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
get(java.lang.String key)
Retrieve the persisted value for the provided key.
|
void |
put(java.lang.String key,
java.lang.String value)
Persists the provided key and value to Redis.
|
java.lang.String |
remove(java.lang.String key)
Remove a value for the given key from this MetadataStore.
|
public static final java.lang.String KEY
public RedisMetadataStore(org.springframework.data.redis.support.collections.RedisProperties properties)
RedisProperties
backend for this MetadataStore
.public RedisMetadataStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory)
public RedisMetadataStore(org.springframework.data.redis.connection.RedisConnectionFactory connectionFactory, java.lang.String key)
RedisProperties
by provided RedisConnectionFactory
and key.public RedisMetadataStore(org.springframework.data.redis.core.RedisOperations<java.lang.String,?> operations)
public RedisMetadataStore(org.springframework.data.redis.core.RedisOperations<java.lang.String,?> operations, java.lang.String key)
RedisProperties
by provided RedisConnectionFactory
and key.public void put(java.lang.String key, java.lang.String value)
put
in interface MetadataStore
key
- Must not be nullvalue
- Must not be nullpublic java.lang.String get(java.lang.String key)
get
in interface MetadataStore
key
- Must not be nullpublic java.lang.String remove(java.lang.String key)
MetadataStore
remove
in interface MetadataStore