Method: Redis::Commands::Geo#georadius
- Defined in:
- lib/redis/commands/geo.rb
#georadius(*args, **geoptions) ⇒ Array<String>
Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point
33 34 35 36 37 |
# File 'lib/redis/commands/geo.rb', line 33 def georadius(*args, **) geoarguments = _geoarguments(*args, **) send_command([:georadius, *geoarguments]) end |