Skip to content

Commit 2b51966

Browse files
christophstroblmp911de
authored andcommitted
DATAREDIS-514 - Unify geoRadius capitalization.
Unify capitalization of geoRadius to match other geo prefixed operations. Original pull request: #200.
1 parent d88d992 commit 2b51966

14 files changed

+105
-101
lines changed

src/main/java/org/springframework/data/redis/connection/DefaultStringRedisConnection.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2499,10 +2499,10 @@ public List<Point> geoPos(String key, String... members) {
24992499

25002500
/*
25012501
* (non-Javadoc)
2502-
* @see org.springframework.data.redis.connection.StringRedisConnection#georadius(java.lang.String, org.springframework.data.geo.Circle)
2502+
* @see org.springframework.data.redis.connection.StringRedisConnection#geoRadius(java.lang.String, org.springframework.data.geo.Circle)
25032503
*/
25042504
@Override
2505-
public GeoResults<GeoLocation<String>> georadius(String key, Circle within) {
2505+
public GeoResults<GeoLocation<String>> geoRadius(String key, Circle within) {
25062506

25072507
GeoResults<GeoLocation<byte[]>> result = delegate.geoRadius(serialize(key), within);
25082508
if (isFutureConversion()) {
@@ -2514,10 +2514,10 @@ public GeoResults<GeoLocation<String>> georadius(String key, Circle within) {
25142514

25152515
/*
25162516
* (non-Javadoc)
2517-
* @see org.springframework.data.redis.connection.StringRedisConnection#georadius(java.lang.String, org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2517+
* @see org.springframework.data.redis.connection.StringRedisConnection#geoRadius(java.lang.String, org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
25182518
*/
25192519
@Override
2520-
public GeoResults<GeoLocation<String>> georadius(String key, Circle within, GeoRadiusCommandArgs args) {
2520+
public GeoResults<GeoLocation<String>> geoRadius(String key, Circle within, GeoRadiusCommandArgs args) {
25212521

25222522
GeoResults<GeoLocation<byte[]>> result = delegate.geoRadius(serialize(key), within, args);
25232523
if (isFutureConversion()) {
@@ -2528,19 +2528,19 @@ public GeoResults<GeoLocation<String>> georadius(String key, Circle within, GeoR
25282528

25292529
/*
25302530
* (non-Javadoc)
2531-
* @see org.springframework.data.redis.connection.StringRedisConnection#georadiusByMember(java.lang.String, java.lang.String, double)
2531+
* @see org.springframework.data.redis.connection.StringRedisConnection#geoRadiusByMember(java.lang.String, java.lang.String, double)
25322532
*/
25332533
@Override
2534-
public GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, double radius) {
2535-
return georadiusByMember(key, member, new Distance(radius, DistanceUnit.METERS));
2534+
public GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, double radius) {
2535+
return geoRadiusByMember(key, member, new Distance(radius, DistanceUnit.METERS));
25362536
}
25372537

25382538
/*
25392539
* (non-Javadoc)
2540-
* @see org.springframework.data.redis.connection.StringRedisConnection#georadiusByMember(java.lang.String, java.lang.String, org.springframework.data.geo.Distance)
2540+
* @see org.springframework.data.redis.connection.StringRedisConnection#geoRadiusByMember(java.lang.String, java.lang.String, org.springframework.data.geo.Distance)
25412541
*/
25422542
@Override
2543-
public GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, Distance radius) {
2543+
public GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius) {
25442544

25452545
GeoResults<GeoLocation<byte[]>> result = delegate.geoRadiusByMember(serialize(key), serialize(member), radius);
25462546
if (isFutureConversion()) {
@@ -2551,10 +2551,10 @@ public GeoResults<GeoLocation<String>> georadiusByMember(String key, String memb
25512551

25522552
/*
25532553
* (non-Javadoc)
2554-
* @see org.springframework.data.redis.connection.StringRedisConnection#georadiusByMember(java.lang.String, java.lang.String, org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2554+
* @see org.springframework.data.redis.connection.StringRedisConnection#geoRadiusByMember(java.lang.String, java.lang.String, org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
25552555
*/
25562556
@Override
2557-
public GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, Distance radius,
2557+
public GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius,
25582558
GeoRadiusCommandArgs args) {
25592559

25602560
GeoResults<GeoLocation<byte[]>> result = delegate.geoRadiusByMember(serialize(key), serialize(member), radius,
@@ -2567,7 +2567,7 @@ public GeoResults<GeoLocation<String>> georadiusByMember(String key, String memb
25672567

25682568
/*
25692569
* (non-Javadoc)
2570-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle)
2570+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle)
25712571
*/
25722572
@Override
25732573
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
@@ -2581,7 +2581,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
25812581

25822582
/*
25832583
* (non-Javadoc)
2584-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2584+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
25852585
*/
25862586
@Override
25872587
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoRadiusCommandArgs args) {
@@ -2595,7 +2595,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoR
25952595

25962596
/*
25972597
* (non-Javadoc)
2598-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double)
2598+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double)
25992599
*/
26002600
@Override
26012601
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, double radius) {
@@ -2604,7 +2604,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
26042604

26052605
/*
26062606
* (non-Javadoc)
2607-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
2607+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
26082608
*/
26092609
@Override
26102610
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius) {
@@ -2618,7 +2618,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
26182618

26192619
/*
26202620
* (non-Javadoc)
2621-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2621+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
26222622
*/
26232623
@Override
26242624
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius,

src/main/java/org/springframework/data/redis/connection/StringRedisConnection.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ public interface StringTuple extends Tuple {
732732
* @see <a href="http://redis.io/commands/georadius">http://redis.io/commands/georadius</a>
733733
* @since 1.8
734734
*/
735-
GeoResults<GeoLocation<String>> georadius(String key, Circle within);
735+
GeoResults<GeoLocation<String>> geoRadius(String key, Circle within);
736736

737737
/**
738738
* Get the {@literal member}s within the boundaries of a given {@link Circle} applying {@link GeoRadiusCommandArgs}.
@@ -744,7 +744,7 @@ public interface StringTuple extends Tuple {
744744
* @see <a href="http://redis.io/commands/georadius">http://redis.io/commands/georadius</a>
745745
* @since 1.8
746746
*/
747-
GeoResults<GeoLocation<String>> georadius(String key, Circle within, GeoRadiusCommandArgs args);
747+
GeoResults<GeoLocation<String>> geoRadius(String key, Circle within, GeoRadiusCommandArgs args);
748748

749749
/**
750750
* Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given
@@ -757,7 +757,7 @@ public interface StringTuple extends Tuple {
757757
* @see <a href="http://redis.io/commands/georadiusbymember">http://redis.io/commands/georadiusbymember</a>
758758
* @since 1.8
759759
*/
760-
GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, double radius);
760+
GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, double radius);
761761

762762
/**
763763
* Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given
@@ -770,7 +770,7 @@ public interface StringTuple extends Tuple {
770770
* @see <a href="http://redis.io/commands/georadiusbymember">http://redis.io/commands/georadiusbymember</a>
771771
* @since 1.8
772772
*/
773-
GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, Distance radius);
773+
GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius);
774774

775775
/**
776776
* Get the {@literal member}s within the circle defined by the {@literal members} coordinates and given
@@ -784,7 +784,7 @@ public interface StringTuple extends Tuple {
784784
* @see <a href="http://redis.io/commands/georadiusbymember">http://redis.io/commands/georadiusbymember</a>
785785
* @since 1.8
786786
*/
787-
GeoResults<GeoLocation<String>> georadiusByMember(String key, String member, Distance radius,
787+
GeoResults<GeoLocation<String>> geoRadiusByMember(String key, String member, Distance radius,
788788
GeoRadiusCommandArgs args);
789789

790790
/**

src/main/java/org/springframework/data/redis/connection/jedis/JedisClusterConnection.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2675,7 +2675,7 @@ public List<Point> geoPos(byte[] key, byte[]... members) {
26752675

26762676
/*
26772677
* (non-Javadoc)
2678-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle)
2678+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle)
26792679
*/
26802680
@Override
26812681
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
@@ -2694,7 +2694,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
26942694

26952695
/*
26962696
* (non-Javadoc)
2697-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2697+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
26982698
*/
26992699
@Override
27002700
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoRadiusCommandArgs args) {
@@ -2717,7 +2717,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoR
27172717

27182718
/*
27192719
* (non-Javadoc)
2720-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double)
2720+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double)
27212721
*/
27222722
@Override
27232723
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, double radius) {
@@ -2726,7 +2726,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
27262726

27272727
/*
27282728
* (non-Javadoc)
2729-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
2729+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
27302730
*/
27312731
@Override
27322732
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius) {
@@ -2746,7 +2746,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
27462746

27472747
/*
27482748
* (non-Javadoc)
2749-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
2749+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
27502750
*/
27512751
@Override
27522752
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius,

src/main/java/org/springframework/data/redis/connection/jedis/JedisConnection.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ public List<Point> geoPos(byte[] key, byte[]... members) {
33213321

33223322
/*
33233323
* (non-Javadoc)
3324-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle)
3324+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle)
33253325
*/
33263326
@Override
33273327
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
@@ -3358,7 +3358,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
33583358

33593359
/*
33603360
* (non-Javadoc)
3361-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
3361+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
33623362
*/
33633363
@Override
33643364
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoRadiusCommandArgs args) {
@@ -3394,7 +3394,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoR
33943394

33953395
/*
33963396
* (non-Javadoc)
3397-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double)
3397+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double)
33983398
*/
33993399
@Override
34003400
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, double radius) {
@@ -3403,7 +3403,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
34033403

34043404
/*
34053405
* (non-Javadoc)
3406-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
3406+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
34073407
*/
34083408
@Override
34093409
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius) {
@@ -3432,6 +3432,10 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
34323432
}
34333433
}
34343434

3435+
/*
3436+
* (non-Javadoc)
3437+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.connection.RedisGeoCommands.GeoRadiusCommandArgs)
3438+
*/
34353439
@Override
34363440
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius,
34373441
GeoRadiusCommandArgs args) {

src/main/java/org/springframework/data/redis/connection/jredis/JredisConnection.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ public List<Point> geoPos(byte[] key, byte[]... members) {
12751275

12761276
/*
12771277
* (non-Javadoc)
1278-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle)
1278+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle)
12791279
*/
12801280
@Override
12811281
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
@@ -1284,7 +1284,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
12841284

12851285
/*
12861286
* (non-Javadoc)
1287-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
1287+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
12881288
*/
12891289
@Override
12901290
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoRadiusCommandArgs args) {
@@ -1293,7 +1293,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoR
12931293

12941294
/*
12951295
* (non-Javadoc)
1296-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double)
1296+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double)
12971297
*/
12981298
@Override
12991299
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, double radius) {
@@ -1302,7 +1302,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
13021302

13031303
/*
13041304
* (non-Javadoc)
1305-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
1305+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance)
13061306
*/
13071307
@Override
13081308
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius) {
@@ -1311,7 +1311,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
13111311

13121312
/*
13131313
* (non-Javadoc)
1314-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
1314+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
13151315
*/
13161316
@Override
13171317
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius,

src/main/java/org/springframework/data/redis/connection/lettuce/LettuceConnection.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3301,7 +3301,7 @@ public List<Point> geoPos(byte[] key, byte[]... members) {
33013301

33023302
/*
33033303
* (non-Javadoc)
3304-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle)
3304+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle)
33053305
*/
33063306
@Override
33073307
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
@@ -3337,7 +3337,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
33373337

33383338
/*
33393339
* (non-Javadoc)
3340-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
3340+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadius(byte[], org.springframework.data.geo.Circle, org.springframework.data.redis.core.GeoRadiusCommandArgs)
33413341
*/
33423342
@Override
33433343
public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoRadiusCommandArgs args) {
@@ -3373,7 +3373,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within, GeoR
33733373

33743374
/*
33753375
* (non-Javadoc)
3376-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double)
3376+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double)
33773377
*/
33783378
@Override
33793379
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, double radius) {
@@ -3382,7 +3382,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
33823382

33833383
/*
33843384
* (non-Javadoc)
3385-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], double, org.springframework.data.geo.Metric)
3385+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], double, org.springframework.data.geo.Metric)
33863386
*/
33873387
@Override
33883388
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius) {
@@ -3414,7 +3414,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
34143414

34153415
/*
34163416
* (non-Javadoc)
3417-
* @see org.springframework.data.redis.connection.RedisGeoCommands#georadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
3417+
* @see org.springframework.data.redis.connection.RedisGeoCommands#geoRadiusByMember(byte[], byte[], org.springframework.data.geo.Distance, org.springframework.data.redis.core.GeoRadiusCommandArgs)
34183418
*/
34193419
@Override
34203420
public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] member, Distance radius,

0 commit comments

Comments
 (0)