Uses of Class
com.blackrook.redis.data.RedisObject
Packages that use RedisObject
Package
Description
Contains classes relevant to connecting to Redis servers.
Contains interfaces for implementing Redis commands.
Contains encapsulations for Redis objects and responses.
Contains useful enumerations.
Contains classes relevant to reading and writing to Redis sockets.
-
Uses of RedisObject in com.blackrook.redis
Methods in com.blackrook.redis that return RedisObjectModifier and TypeMethodDescriptionRedisPipeline.finish()Send all pending commands in the pipeline and returns all of their return values.RedisUserConnection.sendCommandString(String commandString) Sends a request to a Redis server in the form of a literal command.RedisUserConnection.sendRequest(Object... arguments) Sends a raw request to a Redis server in the form of a literal command, already separated into tokens.RedisUserConnection.sendRequest(String... arguments) Sends a request to a Redis server in the form of a literal command, already separated into tokens.RedisServerConnection.slowlogGet(long recentCount) RedisServerConnection.slowlogLen()RedisServerConnection.slowlogReset() -
Uses of RedisObject in com.blackrook.redis.commands
Methods in com.blackrook.redis.commands that return RedisObjectModifier and TypeMethodDescriptionRedisServerCommands.slowlogGet(long recentCount) RedisServerCommands.slowlogLen()RedisServerCommands.slowlogReset() -
Uses of RedisObject in com.blackrook.redis.data
Fields in com.blackrook.redis.data declared as RedisObjectModifier and TypeFieldDescriptionstatic final RedisObjectRedisObject.NULLAll NULL string objects are this object.static final RedisObjectRedisObject.NULL_ARRAYAll NULL array objects are this object.Methods in com.blackrook.redis.data that return RedisObjectModifier and TypeMethodDescriptionstatic RedisObjectRedisObject.create(double value) Creates an object of type STRING, using a floating-point number.static RedisObjectRedisObject.create(long value) Creates an object of type INTEGER.static RedisObjectCreates an object of type STRING.static RedisObjectCreates an object of type ARRAY.static RedisObjectRedisObject.createEmptyArray(int length) Creates an object of type ARRAY, but with allnullelements.static RedisObjectRedisObject.createError(String message) Creates an object of type ERROR.static RedisObjectRedisObject.createNull()Creates a null object (type STRING).static RedisObjectRedisObject.createNullArray()Creates a null object (type ARRAY).RedisObject.get(int index) If this is an array, this returns an element at a specific index in it.RedisObject.set(int index, double value) If this is an array, this sets an element at a specific index in it.RedisObject.set(int index, long value) If this is an array, this sets an element at a specific index in it.RedisObject.set(int index, RedisObject value) If this is an array, this sets an element at a specific index in it.If this is an array, this sets an element at a specific index in it.If this is an array, this sets an element at a specific index in it.Methods in com.blackrook.redis.data with parameters of type RedisObjectModifier and TypeMethodDescriptionRedisObject.set(int index, RedisObject value) If this is an array, this sets an element at a specific index in it. -
Uses of RedisObject in com.blackrook.redis.enums
Fields in com.blackrook.redis.enums with type parameters of type RedisObjectModifier and TypeFieldDescriptionstatic final ReturnType<RedisObject> ReturnType.OBJECTOBJECT return type. -
Uses of RedisObject in com.blackrook.redis.io
Methods in com.blackrook.redis.io that return RedisObjectModifier and TypeMethodDescriptionRESPReader.readObject()Reads a full Redis data structure as aRedisObject.Methods in com.blackrook.redis.io with parameters of type RedisObjectModifier and TypeMethodDescriptionvoidRESPWriter.writeObject(RedisObject object) Writes a full object that represents a Redis request.