org.springframework.data.keyvalue.redis.core
Interface BoundHashOperations<H,HK,HV>
- All Superinterfaces:
- KeyBound<H>
public interface BoundHashOperations<H,HK,HV>
- extends KeyBound<H>
Hash operations bound to a certain key.
- Author:
- Costin Leau
Methods inherited from interface org.springframework.data.keyvalue.redis.core.KeyBound |
getKey |
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()
Copyright © 2010-2011 SpringSource. All Rights Reserved.