Uses of Class
io.lettuce.core.RedisException
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.cluster |
Client for Redis Cluster, see
RedisClusterClient. |
| io.lettuce.core.dynamic |
Core package for Redis Command Interface support through
RedisCommandFactory. |
| io.lettuce.core.dynamic.batch |
Batching with Redis Command interfaces.
|
| io.lettuce.core.protocol |
Redis protocol layer abstraction.
|
| io.lettuce.core.support.caching |
-
Uses of RedisException in io.lettuce.core
Subclasses of RedisException in io.lettuce.core Modifier and Type Class Description classRedisBusyExceptionException that gets thrown when Redis is busy executing a Lua script with aBUSYerror response.classRedisCommandExecutionExceptionException for errors states reported by Redis.classRedisCommandInterruptedExceptionException thrown when the thread executing a redis command is interrupted.classRedisCommandTimeoutExceptionException thrown when the command waiting timeout is exceeded.classRedisConnectionExceptionException for connection failures.classRedisLoadingExceptionException that gets thrown when Redis is loading a dataset into memory and replying with aLOADINGerror response.classRedisNoScriptExceptionException that gets thrown when Redis indicates absence of a Lua script referenced by its SHA1 digest with aNOSCRIPTerror response. -
Uses of RedisException in io.lettuce.core.cluster
Subclasses of RedisException in io.lettuce.core.cluster Modifier and Type Class Description classPartitionExceptionPartition access exception thrown when a partition-specific operations fails.classPartitionSelectorExceptionException thrown when a partition selection fails (slot not covered, no read candidates available).classUnknownPartitionExceptionException thrown when an unknown partition is requested. -
Uses of RedisException in io.lettuce.core.dynamic
Subclasses of RedisException in io.lettuce.core.dynamic Modifier and Type Class Description classCommandCreationExceptionException thrown if a command cannot be constructed from aCommandMethod.classCommandMethodSyntaxExceptionException thrown if the command syntax is invalid. -
Uses of RedisException in io.lettuce.core.dynamic.batch
Subclasses of RedisException in io.lettuce.core.dynamic.batch Modifier and Type Class Description classBatchExceptionBatch exception to collect multiple errors from batched command execution. -
Uses of RedisException in io.lettuce.core.protocol
Subclasses of RedisException in io.lettuce.core.protocol Modifier and Type Class Description classRedisProtocolExceptionException thrown on Redis protocol failures. -
Uses of RedisException in io.lettuce.core.support.caching
Subclasses of RedisException in io.lettuce.core.support.caching Modifier and Type Class Description static classCacheFrontend.ValueRetrievalExceptionWrapper exception to be thrown fromCacheFrontend.get(Object, Callable)in case of the value loader callback failing with an exception.