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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

Vget(Object key)
Get the value of key .
Longincrement(K key, long delta)
Increment an integer value stored as string value under key by delta .
Doubleincrement(K key, double delta)
Increment a floating point number value stored as string value under key by delta .
ListmultiGet(Collection keys)
Get multiple keys .
voidmultiSet(Map map)
Set multiple keys to multiple values using key-value pairs provided in tuple .
voidset(K key, V value)
Set value for key .
voidset(K key, V value, long timeout, TimeUnit unit)
Set the value and expiration timeout for key .
BooleansetIfAbsent(K key, V value)
Set key to hold the string value if key is absent.