Uses of Class
io.lettuce.core.TrackingArgs
| 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.
|
| io.lettuce.core.support.caching |
-
Uses of TrackingArgs in io.lettuce.core
Methods in io.lettuce.core that return TrackingArgs Modifier and Type Method Description TrackingArgsTrackingArgs. bcast()Enable tracking in broadcasting mode.static TrackingArgsTrackingArgs.Builder. enabled()Creates newTrackingArgswith CLIENT TRACKING ON.static TrackingArgsTrackingArgs.Builder. enabled(boolean enabled)TrackingArgsTrackingArgs. enabled(boolean enabled)Controls whether to enable key tracking for the currently connected client.TrackingArgsTrackingArgs. noloop()Don't send notifications about keys modified by this connection itself.TrackingArgsTrackingArgs. optin()When broadcasting is NOT active, normally don't track keys in read only commands, unless they are called immediately after a CLIENT CACHING yes command.TrackingArgsTrackingArgs. optout()When broadcasting is NOT active, normally track keys in read only commands, unless they are called immediately after a CLIENT CACHING no command.TrackingArgsTrackingArgs. prefixes(String... prefixes)For broadcasting, register a given key prefix, so that notifications will be provided only for keys starting with this string.TrackingArgsTrackingArgs. prefixes(Charset charset, String... prefixes)For broadcasting, register a given key prefix, so that notifications will be provided only for keys starting with this string.TrackingArgsTrackingArgs. redirect(long clientId)Send redirection messages to the connection with the specified ID.Methods in io.lettuce.core with parameters of type TrackingArgs Modifier and Type Method Description RedisFuture<String>AbstractRedisAsyncCommands. clientTracking(TrackingArgs args)Mono<String>AbstractRedisReactiveCommands. clientTracking(TrackingArgs args) -
Uses of TrackingArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type TrackingArgs Modifier and Type Method Description RedisFuture<String>RedisServerAsyncCommands. clientTracking(TrackingArgs args)Enables the tracking feature of the Redis server, that is used for server assisted client side caching. -
Uses of TrackingArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type TrackingArgs Modifier and Type Method Description Mono<String>RedisServerReactiveCommands. clientTracking(TrackingArgs args)Enables the tracking feature of the Redis server, that is used for server assisted client side caching. -
Uses of TrackingArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type TrackingArgs Modifier and Type Method Description StringRedisServerCommands. clientTracking(TrackingArgs args)Enables the tracking feature of the Redis server, that is used for server assisted client side caching. -
Uses of TrackingArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type TrackingArgs Modifier and Type Method Description AsyncExecutions<String>NodeSelectionServerAsyncCommands. clientTracking(TrackingArgs args)Enables the tracking feature of the Redis server, that is used for server assisted client side caching. -
Uses of TrackingArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type TrackingArgs Modifier and Type Method Description Executions<String>NodeSelectionServerCommands. clientTracking(TrackingArgs args)Enables the tracking feature of the Redis server, that is used for server assisted client side caching. -
Uses of TrackingArgs in io.lettuce.core.support.caching
Methods in io.lettuce.core.support.caching with parameters of type TrackingArgs Modifier and Type Method Description static <K, V> CacheFrontend<K,V>ClientSideCaching. enable(CacheAccessor<K,V> cacheAccessor, StatefulRedisConnection<K,V> connection, TrackingArgs tracking)Enable server-assisted Client side caching for the givenCacheAccessorandStatefulRedisConnection.