Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with
the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
Modifier and Type | Method and Description |
---|---|
protected RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.clone() |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.includeCoordinates()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHCOORD flag to also return the longitude, latitude coordinates of the matching items. |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.includeDistance()
Sets the
RedisGeoCommands.GeoRadiusCommandArgs.Flag.WITHDIST flag to also return the distance of the returned items from the specified center. |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.limit(long count)
Limit the results to the first N matching items.
|
static RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.newGeoRadiusArgs()
Create new
RedisGeoCommands.GeoRadiusCommandArgs . |
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.sortAscending()
Sort returned items from the nearest to the furthest, relative to the center.
|
RedisGeoCommands.GeoRadiusCommandArgs |
RedisGeoCommands.GeoRadiusCommandArgs.sortDescending()
Sort returned items from the furthest to the nearest, relative to the center.
|
Modifier and Type | Method and Description |
---|---|
Optional<RedisGeoCommands.GeoRadiusCommandArgs> |
ReactiveGeoCommands.GeoRadiusCommand.getArgs() |
Optional<RedisGeoCommands.GeoRadiusCommandArgs> |
ReactiveGeoCommands.GeoRadiusByMemberCommand.getArgs() |
Modifier and Type | Method and Description |
---|---|
GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
LettuceConnection.geoRadius(byte[] key,
Circle within,
RedisGeoCommands.GeoRadiusCommandArgs args) |
GeoResults<RedisGeoCommands.GeoLocation<byte[]>> |
LettuceConnection.geoRadiusByMember(byte[] key,
byte[] member,
Distance radius,
RedisGeoCommands.GeoRadiusCommandArgs args) |
static com.lambdaworks.redis.GeoArgs |
LettuceConverters.toGeoArgs(RedisGeoCommands.GeoRadiusCommandArgs args)
Convert
RedisGeoCommands.GeoRadiusCommandArgs into GeoArgs . |
Copyright © 2011-2016–2016 Pivotal Software, Inc.. All rights reserved.