Uses of Class
io.lettuce.core.RestoreArgs
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of RestoreArgs in io.lettuce.core
Methods in io.lettuce.core that return RestoreArgs Modifier and Type Method Description RestoreArgsRestoreArgs. absttl()TTL will represent an absolute Unix timestamp (in milliseconds) in which the key will expire.RestoreArgsRestoreArgs. absttl(boolean absttl)TTL will represent an absolute Unix timestamp (in milliseconds) in which the key will expire.RestoreArgsRestoreArgs. frequency(long frequency)Set the logarithmic access frequency counter of the object stored at the specified key.RestoreArgsRestoreArgs. idleTime(long idleTime)Set the number of seconds since the object stored at the specified key is idle (not requested by read or write operations).RestoreArgsRestoreArgs. replace()Replaces existing keys if the target key already exists.RestoreArgsRestoreArgs. replace(boolean replace)Replaces existing keys if the target key already exists.static RestoreArgsRestoreArgs.Builder. ttl(long milliseconds)Creates newRestoreArgsand set the TTL.static RestoreArgsRestoreArgs.Builder. ttl(Duration ttl)Creates newRestoreArgsand set the minimum idle time.RestoreArgsRestoreArgs. ttl(long milliseconds)Set TTL inmillisecondsafter restoring the key.RestoreArgsRestoreArgs. ttl(Duration ttl)Set TTL inmillisecondsafter restoring the key.Methods in io.lettuce.core with parameters of type RestoreArgs Modifier and Type Method Description RedisFuture<String>AbstractRedisAsyncCommands. restore(K key, byte[] value, RestoreArgs args)Mono<String>AbstractRedisReactiveCommands. restore(K key, byte[] value, RestoreArgs args) -
Uses of RestoreArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type RestoreArgs Modifier and Type Method Description RedisFuture<String>RedisKeyAsyncCommands. restore(K key, byte[] value, RestoreArgs args)Create a key using the provided serialized value, previously obtained using DUMP. -
Uses of RestoreArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type RestoreArgs Modifier and Type Method Description Mono<String>RedisKeyReactiveCommands. restore(K key, byte[] value, RestoreArgs args)Create a key using the provided serialized value, previously obtained using DUMP. -
Uses of RestoreArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type RestoreArgs Modifier and Type Method Description StringRedisKeyCommands. restore(K key, byte[] value, RestoreArgs args)Create a key using the provided serialized value, previously obtained using DUMP. -
Uses of RestoreArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type RestoreArgs Modifier and Type Method Description AsyncExecutions<String>NodeSelectionKeyAsyncCommands. restore(K key, byte[] value, RestoreArgs args)Create a key using the provided serialized value, previously obtained using DUMP. -
Uses of RestoreArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type RestoreArgs Modifier and Type Method Description Executions<String>NodeSelectionKeyCommands. restore(K key, byte[] value, RestoreArgs args)Create a key using the provided serialized value, previously obtained using DUMP.