Deletes the given key.
The key to delete.
Execute an arbitrary Redis command and receive the result.
The Redis command to execute.
The arguments for the Redis command.
Get a value for the given key. Returns null if the key does not exist.
The key to retrieve the value for.
Increment the value of a key.
The key to increment.
Publish a Redis message to the specified channel.
The channel to publish the message to.
The message payload.
Adds a value to a set.
The key of the set.
The values to add to the set.
Set a value for the given key.
The key to set the value for.
The value to set.
Retrieves the members of a set.
The key of the set.
Removes values from a set.
The key of the set.
The values to remove from the set.
Interface representing a Redis connection with various methods for interacting with Redis. RedisConnection