Uses of Class
io.lettuce.core.GetExArgs
| 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 GetExArgs in io.lettuce.core
Methods in io.lettuce.core that return GetExArgs Modifier and Type Method Description static GetExArgsGetExArgs.Builder. ex(long timeout)Creates newGetExArgsand enable EX.static GetExArgsGetExArgs.Builder. ex(Duration timeout)Creates newGetExArgsand enable EX.GetExArgsGetExArgs. ex(long timeout)Set the specified expire time, in seconds.GetExArgsGetExArgs. ex(Duration timeout)Set the specified expire time, in seconds.static GetExArgsGetExArgs.Builder. exAt(long timestamp)Creates newGetExArgsand enable EXAT.static GetExArgsGetExArgs.Builder. exAt(Instant timestamp)Creates newGetExArgsand enable EXAT.static GetExArgsGetExArgs.Builder. exAt(Date timestamp)Creates newGetExArgsand enable EXAT.GetExArgsGetExArgs. exAt(long timestamp)Set the specified expire at time using a posixtimestamp.GetExArgsGetExArgs. exAt(Instant timestamp)Set the specified expire at time using a posixtimestamp.GetExArgsGetExArgs. exAt(Date timestamp)Set the specified expire at time using a posixtimestamp.static GetExArgsGetExArgs.Builder. persist()Creates newGetExArgsand enable PERSIST.GetExArgsGetExArgs. persist()Remove the time to live associated with the key.static GetExArgsGetExArgs.Builder. px(long timeout)Creates newGetExArgsand enable PX.static GetExArgsGetExArgs.Builder. px(Duration timeout)Creates newGetExArgsand enable PX.GetExArgsGetExArgs. px(long timeout)Set the specified expire time, in milliseconds.GetExArgsGetExArgs. px(Duration timeout)Set the specified expire time, in milliseconds.static GetExArgsGetExArgs.Builder. pxAt(long timestamp)Creates newGetExArgsand enable PXAT.static GetExArgsGetExArgs.Builder. pxAt(Instant timestamp)Creates newGetExArgsand enable PXAT.static GetExArgsGetExArgs.Builder. pxAt(Date timestamp)Creates newGetExArgsand enable PXAT.GetExArgsGetExArgs. pxAt(long timestamp)Set the specified expire at time using a posixtimestamp.GetExArgsGetExArgs. pxAt(Instant timestamp)Set the specified expire at time using a posixtimestamp.GetExArgsGetExArgs. pxAt(Date timestamp)Set the specified expire at time using a posixtimestamp. -
Uses of GetExArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type GetExArgs Modifier and Type Method Description RedisFuture<V>RedisStringAsyncCommands. getex(K key, GetExArgs args)Get the value of key and optionally set its expiration. -
Uses of GetExArgs in io.lettuce.core.api.reactive
-
Uses of GetExArgs in io.lettuce.core.api.sync
-
Uses of GetExArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type GetExArgs Modifier and Type Method Description AsyncExecutions<V>NodeSelectionStringAsyncCommands. getex(K key, GetExArgs args)Get the value of key and optionally set its expiration. -
Uses of GetExArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type GetExArgs Modifier and Type Method Description Executions<V>NodeSelectionStringCommands. getex(K key, GetExArgs args)Get the value of key and optionally set its expiration.