Java org.springframework.data.redis.connection StringRedisConnection fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

voidclose()
Closes (or quits) the connection.
LongdbSize()
Get the total number of available keys in currently selected database.
Longdel(String... keys)
Delete given keys .
Booleanexists(String key)
Determine if given key exists.
Longexists(String... keys)
Count how many of the given keys exist.
voidflushDb()
Delete all keys of the currently selected database.
Stringget(String key)
Get the value of key .
Stringping()
Test connection.
StringrPop(String key)
Removes and returns last element in list stored at key .
LongsAdd(String key, String... values)
Add given values to set at key .
Booleanset(String key, String value)
Set value for key .
SetsMembers(String key)
Get all elements of set at key .