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

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

Introduction

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

The text is from its open source code.

Method

BoundHashOperationsboundHashOps(K key)
Returns the operations performed on hash values bound to the given key.
BoundSetOperationsboundSetOps(K key)
Returns the operations performed on set values bound to the given key.
Booleandelete(K key)
Delete given key .
Longdelete(Collection keys)
Delete given keys .
voiddiscard()
Discard all commands issued after #multi() .
Listexec()
Executes all queued commands in a transaction started with #multi() .
voidmulti()
Mark the start of a transaction block.
HashOperationsopsForHash()
Returns the operations performed on hash values.
ListOperationsopsForList()
Returns the operations performed on list values.
SetOperationsopsForSet()
Returns the operations performed on set values.
ValueOperationsopsForValue()
Returns the operations performed on simple values (or Strings in Redis terminology).
ZSetOperationsopsForZSet()
Returns the operations performed on zset values (also known as sorted sets).
voidwatch(K key)
Watch given key for modifications during transaction started with #multi() .
voidwatch(Collection keys)
Watch given keys for modifications during transaction started with #multi() .