@@ -2499,10 +2499,10 @@ public List<Point> geoPos(String key, String... members) {
2499
2499
2500
2500
/*
2501
2501
* (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)
2503
2503
*/
2504
2504
@ Override
2505
- public GeoResults <GeoLocation <String >> georadius (String key , Circle within ) {
2505
+ public GeoResults <GeoLocation <String >> geoRadius (String key , Circle within ) {
2506
2506
2507
2507
GeoResults <GeoLocation <byte []>> result = delegate .geoRadius (serialize (key ), within );
2508
2508
if (isFutureConversion ()) {
@@ -2514,10 +2514,10 @@ public GeoResults<GeoLocation<String>> georadius(String key, Circle within) {
2514
2514
2515
2515
/*
2516
2516
* (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)
2518
2518
*/
2519
2519
@ 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 ) {
2521
2521
2522
2522
GeoResults <GeoLocation <byte []>> result = delegate .geoRadius (serialize (key ), within , args );
2523
2523
if (isFutureConversion ()) {
@@ -2528,19 +2528,19 @@ public GeoResults<GeoLocation<String>> georadius(String key, Circle within, GeoR
2528
2528
2529
2529
/*
2530
2530
* (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)
2532
2532
*/
2533
2533
@ 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 ));
2536
2536
}
2537
2537
2538
2538
/*
2539
2539
* (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)
2541
2541
*/
2542
2542
@ 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 ) {
2544
2544
2545
2545
GeoResults <GeoLocation <byte []>> result = delegate .geoRadiusByMember (serialize (key ), serialize (member ), radius );
2546
2546
if (isFutureConversion ()) {
@@ -2551,10 +2551,10 @@ public GeoResults<GeoLocation<String>> georadiusByMember(String key, String memb
2551
2551
2552
2552
/*
2553
2553
* (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)
2555
2555
*/
2556
2556
@ 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 ,
2558
2558
GeoRadiusCommandArgs args ) {
2559
2559
2560
2560
GeoResults <GeoLocation <byte []>> result = delegate .geoRadiusByMember (serialize (key ), serialize (member ), radius ,
@@ -2567,7 +2567,7 @@ public GeoResults<GeoLocation<String>> georadiusByMember(String key, String memb
2567
2567
2568
2568
/*
2569
2569
* (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)
2571
2571
*/
2572
2572
@ Override
2573
2573
public GeoResults <GeoLocation <byte []>> geoRadius (byte [] key , Circle within ) {
@@ -2581,7 +2581,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadius(byte[] key, Circle within) {
2581
2581
2582
2582
/*
2583
2583
* (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)
2585
2585
*/
2586
2586
@ Override
2587
2587
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
2595
2595
2596
2596
/*
2597
2597
* (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)
2599
2599
*/
2600
2600
@ Override
2601
2601
public GeoResults <GeoLocation <byte []>> geoRadiusByMember (byte [] key , byte [] member , double radius ) {
@@ -2604,7 +2604,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
2604
2604
2605
2605
/*
2606
2606
* (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)
2608
2608
*/
2609
2609
@ Override
2610
2610
public GeoResults <GeoLocation <byte []>> geoRadiusByMember (byte [] key , byte [] member , Distance radius ) {
@@ -2618,7 +2618,7 @@ public GeoResults<GeoLocation<byte[]>> geoRadiusByMember(byte[] key, byte[] memb
2618
2618
2619
2619
/*
2620
2620
* (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)
2622
2622
*/
2623
2623
@ Override
2624
2624
public GeoResults <GeoLocation <byte []>> geoRadiusByMember (byte [] key , byte [] member , Distance radius ,
0 commit comments