org.springframework.data.redis.core
Interface BoundHashOperations<H,HK,HV>

All Superinterfaces:
BoundKeyOperations<H>

public interface BoundHashOperations<H,HK,HV>
extends BoundKeyOperations<H>

Hash operations bound to a certain key.


Method Summary
 void delete(Object key)
           
 Map<HK,HV> entries()
           
 HV get(Object key)
           
 RedisOperations<H,?> getOperations()
           
 boolean hasKey(Object key)
           
 Long increment(HK key, long delta)
           
 Set<HK> keys()
           
 Collection<HV> multiGet(Collection<HK> keys)
           
 void put(HK key, HV value)
           
 void putAll(Map<? extends HK,? extends HV> m)
           
 Boolean putIfAbsent(HK key, HV value)
           
 Long size()
           
 Collection<HV> values()
           
 
Methods inherited from interface org.springframework.data.redis.core.BoundKeyOperations
expire, expireAt, getExpire, getKey, getType, persist, rename
 

Method Detail

getOperations

RedisOperations<H,?> getOperations()

hasKey

boolean hasKey(Object key)

increment

Long increment(HK key,
               long delta)

get

HV get(Object key)

put

void put(HK key,
         HV value)

putIfAbsent

Boolean putIfAbsent(HK key,
                    HV value)

multiGet

Collection<HV> multiGet(Collection<HK> keys)

putAll

void putAll(Map<? extends HK,? extends HV> m)

keys

Set<HK> keys()

values

Collection<HV> values()

size

Long size()

delete

void delete(Object key)

entries

Map<HK,HV> entries()