| Package | Description |
|---|---|
| org.jredis.protocol |
This package contains the constructs that reflect the Redis Protocol Specification
TODO: elaborate on the spec requirements.
|
| Modifier and Type | Field and Description |
|---|---|
Command.RequestType |
Command.requestType |
| Modifier and Type | Method and Description |
|---|---|
static Command.RequestType |
Command.RequestType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Command.RequestType[] |
Command.RequestType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Constructor and Description |
|---|
Command(Command.RequestType reqType,
Command.ResponseType respType,
Command.Flag... flags)
Each enum member directly corresponds to a Redis command, per
specification.
|