How to get all Geo records from single Redis key using java (Jedis)
How to get all Geo records associated with a key? I am able to push data into Redis and retrieve based on [lon,lat,buffer] using jedis.georadius(key, lon,lat, radius, GeoUnit.KM,GeoRadiusParam.geoRadiusParam().withCoord()); Is there any way to get all records using the key alone?…