| 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 |
Client for Redis Cluster, see
RedisClusterClient. |
| 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.output |
Implementation of different output protocols including the Streaming API.
|
| Modifier and Type | Method and Description |
|---|---|
protected RedisFuture<List<GeoWithin<V>>> |
AbstractRedisAsyncCommands.georadius_ro(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
protected Flux<GeoWithin<V>> |
AbstractRedisReactiveCommands.georadius_ro(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
RedisFuture<List<GeoWithin<V>>> |
AbstractRedisAsyncCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
AbstractRedisReactiveCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
protected RedisFuture<List<GeoWithin<V>>> |
AbstractRedisAsyncCommands.georadiusbymember_ro(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
protected Flux<GeoWithin<V>> |
AbstractRedisReactiveCommands.georadiusbymember_ro(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
RedisFuture<List<GeoWithin<V>>> |
AbstractRedisAsyncCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
AbstractRedisReactiveCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<GeoWithin<V>>> |
RedisGeoAsyncCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
longitude and latitude. |
RedisFuture<List<GeoWithin<V>>> |
RedisGeoAsyncCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
member. |
| Modifier and Type | Method and Description |
|---|---|
Flux<GeoWithin<V>> |
RedisGeoReactiveCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
longitude and latitude. |
Flux<GeoWithin<V>> |
RedisGeoReactiveCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
member. |
| Modifier and Type | Method and Description |
|---|---|
List<GeoWithin<V>> |
RedisGeoCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
longitude and latitude. |
List<GeoWithin<V>> |
RedisGeoCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
member. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<GeoWithin<V>>> |
RedisAdvancedClusterAsyncCommandsImpl.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
RedisClusterPubSubReactiveCommandsImpl.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
RedisFuture<List<GeoWithin<V>>> |
RedisClusterPubSubAsyncCommandsImpl.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
RedisAdvancedClusterReactiveCommandsImpl.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
RedisFuture<List<GeoWithin<V>>> |
RedisAdvancedClusterAsyncCommandsImpl.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
RedisClusterPubSubReactiveCommandsImpl.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
RedisFuture<List<GeoWithin<V>>> |
RedisClusterPubSubAsyncCommandsImpl.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
Flux<GeoWithin<V>> |
RedisAdvancedClusterReactiveCommandsImpl.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs) |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<GeoWithin<V>>> |
NodeSelectionGeoAsyncCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
longitude and latitude. |
AsyncExecutions<List<GeoWithin<V>>> |
NodeSelectionGeoAsyncCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
member. |
| Modifier and Type | Method and Description |
|---|---|
Executions<List<GeoWithin<V>>> |
NodeSelectionGeoCommands.georadius(K key,
double longitude,
double latitude,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
longitude and latitude. |
Executions<List<GeoWithin<V>>> |
NodeSelectionGeoCommands.georadiusbymember(K key,
V member,
double distance,
GeoArgs.Unit unit,
GeoArgs geoArgs)
Retrieve members selected by distance with the center of
member. |
| Modifier and Type | Method and Description |
|---|---|
StreamingOutput.Subscriber<GeoWithin<V>> |
GeoWithinListOutput.getSubscriber() |
| Modifier and Type | Method and Description |
|---|---|
void |
GeoWithinListOutput.setSubscriber(StreamingOutput.Subscriber<GeoWithin<V>> subscriber) |
Copyright © 2019 lettuce.io. All rights reserved.