Uses of Class
io.lettuce.core.GeoAddArgs
| 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 GeoAddArgs in io.lettuce.core
Methods in io.lettuce.core that return GeoAddArgs Modifier and Type Method Description static GeoAddArgsGeoAddArgs.Builder. ch()Creates newGeoAddArgsand enabling CH.GeoAddArgsGeoAddArgs. ch()Modify the return value from the number of new elements added, to the total number of elements changed.static GeoAddArgsGeoAddArgs.Builder. nx()Creates newGeoAddArgsand enabling NX.GeoAddArgsGeoAddArgs. nx()Don't update already existing elements.static GeoAddArgsGeoAddArgs.Builder. xx()Creates newGeoAddArgsand enabling XX.GeoAddArgsGeoAddArgs. xx()Only update elements that already exist.Methods in io.lettuce.core with parameters of type GeoAddArgs Modifier and Type Method Description RedisFuture<Long>AbstractRedisAsyncCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)RedisFuture<Long>AbstractRedisAsyncCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)RedisFuture<Long>AbstractRedisAsyncCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Mono<Long>AbstractRedisReactiveCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Mono<Long>AbstractRedisReactiveCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Mono<Long>AbstractRedisReactiveCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember) -
Uses of GeoAddArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type GeoAddArgs Modifier and Type Method Description RedisFuture<Long>RedisGeoAsyncCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Single geo add.RedisFuture<Long>RedisGeoAsyncCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Multi geo add.RedisFuture<Long>RedisGeoAsyncCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Multi geo add. -
Uses of GeoAddArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type GeoAddArgs Modifier and Type Method Description Mono<Long>RedisGeoReactiveCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Single geo add.Mono<Long>RedisGeoReactiveCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Multi geo add.Mono<Long>RedisGeoReactiveCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Multi geo add. -
Uses of GeoAddArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type GeoAddArgs Modifier and Type Method Description LongRedisGeoCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Single geo add.LongRedisGeoCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Multi geo add.LongRedisGeoCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Multi geo add. -
Uses of GeoAddArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type GeoAddArgs Modifier and Type Method Description AsyncExecutions<Long>NodeSelectionGeoAsyncCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Single geo add.AsyncExecutions<Long>NodeSelectionGeoAsyncCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Multi geo add.AsyncExecutions<Long>NodeSelectionGeoAsyncCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Multi geo add. -
Uses of GeoAddArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type GeoAddArgs Modifier and Type Method Description Executions<Long>NodeSelectionGeoCommands. geoadd(K key, double longitude, double latitude, V member, GeoAddArgs args)Single geo add.Executions<Long>NodeSelectionGeoCommands. geoadd(K key, GeoAddArgs args, GeoValue<V>... values)Multi geo add.Executions<Long>NodeSelectionGeoCommands. geoadd(K key, GeoAddArgs args, Object... lngLatMember)Multi geo add.