| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| io.valkey.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
CommandObject<Long> |
CommandObjects.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
Response<Long> |
PipeliningBase.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
long |
Jedis.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
long |
UnifiedJedis.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
CommandObject<Long> |
CommandObjects.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap) |
Response<Long> |
PipeliningBase.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap) |
long |
Jedis.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap) |
long |
UnifiedJedis.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap) |
| Modifier and Type | Method and Description |
|---|---|
long |
GeoBinaryCommands.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
Response<Long> |
GeoPipelineBinaryCommands.geoadd(byte[] key,
GeoAddParams params,
Map<byte[],GeoCoordinate> memberCoordinateMap) |
Response<Long> |
GeoPipelineCommands.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap) |
long |
GeoCommands.geoadd(String key,
GeoAddParams params,
Map<String,GeoCoordinate> memberCoordinateMap)
Adds the specified geospatial items (in memberCoordinateMap) to the specified key.
|
| Modifier and Type | Method and Description |
|---|---|
GeoAddParams |
GeoAddParams.ch()
Modify the return value from the number of new elements added, to the total number of elements
changed
|
static GeoAddParams |
GeoAddParams.geoAddParams() |
GeoAddParams |
GeoAddParams.nx()
Don't update already existing elements.
|
GeoAddParams |
GeoAddParams.xx()
Only update elements that already exist.
|
Copyright © 2024. All rights reserved.