org.springframework.data.redis.core
Interface BoundValueOperations<K,V>

All Superinterfaces:
BoundKeyOperations<K>

public interface BoundValueOperations<K,V>
extends BoundKeyOperations<K>

Value (or String in Redis terminology) operations bound to a certain key.


Method Summary
 Integer append(String value)
           
 V get()
           
 String get(long start, long end)
           
 V getAndSet(V value)
           
 RedisOperations<K,V> getOperations()
           
 Long increment(long delta)
           
 void set(V value)
           
 void set(V value, long offset)
           
 void set(V value, long timeout, TimeUnit unit)
           
 Boolean setIfAbsent(V value)
           
 Long size()
           
 
Methods inherited from interface org.springframework.data.redis.core.BoundKeyOperations
expire, expireAt, getExpire, getKey, getType, persist, rename
 

Method Detail

getOperations

RedisOperations<K,V> getOperations()

set

void set(V value)

set

void set(V value,
         long offset)

set

void set(V value,
         long timeout,
         TimeUnit unit)

setIfAbsent

Boolean setIfAbsent(V value)

get

V get()

get

String get(long start,
           long end)

getAndSet

V getAndSet(V value)

increment

Long increment(long delta)

append

Integer append(String value)

size

Long size()