Java org.springframework.data.redis.core HashOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.redis.core HashOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.redis.core HashOperations.

The text is from its open source code.

Implementation

org.springframework.data.redis.core.HashOperations has the following implementations.
Click this link to see all its implementation.

Method

Longdelete(H key, Object... hashKeys)
Delete given hash hashKeys .
Mapentries(H key)
Get entire hash stored at key .
HVget(H key, Object hashKey)
Get value for given hashKey from hash at key .
BooleanhasKey(H key, Object hashKey)
Determine if given hash hashKey exists.
Setkeys(H key)
Get key set (fields) of hash at key .
ListmultiGet(H key, Collection hashKeys)
Get values for given hashKeys from hash at key .
voidput(H key, HK hashKey, HV value)
Set the value of a hash hashKey .
voidputAll(H key, Map m)
Set multiple hash fields to multiple values using data provided in m .
Listvalues(H key)
Get entry set (values) of hash at key .