org.springframework.data.keyvalue.redis.core
Interface BoundValueOperations<K,V>
- All Superinterfaces:
- KeyBound<K>
public interface BoundValueOperations<K,V>
- extends KeyBound<K>
Value (or String in Redis terminology) operations bound to a certain key.
- Author:
- Costin Leau
Methods inherited from interface org.springframework.data.keyvalue.redis.core.KeyBound |
getKey |
getOperations
RedisOperations<K,V> getOperations()
set
void set(V value)
set
void set(V value,
long timeout,
TimeUnit unit)
setIfAbsent
Boolean setIfAbsent(V value)
get
V get()
getAndSet
V getAndSet(V value)
increment
Long increment(long delta)
append
Integer append(String value)
get
String get(int start,
int end)
set
void set(int start,
int end)
size
Long size()
Copyright © 2010-2011 SpringSource. All Rights Reserved.