You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GEORADIUS(BYMEMBER)_RO variants are added redis/redis@f8547e5 , but it seems that the client cannot call them.
Here is sample code.
use strict;
use warnings;
use Redis;
use DDP;
my$redis = Redis->new;
# The example comes from https://redis.io/commands/georadius$redis->geoadd('Sicily', 13.361389, 38.115556, "Palermo", 15.087269, 37.502669, "Catania");
p $redis->georadius(Sicily=> 15, 37, 200, "km", "ASC");
p $redis->georadius_ro(Sicily=> 15, 37, 200, "km", "ASC");
I expected that georadius and georadius_ro return same result, but actually not.
\ [
[0] "Catania",
[1] "Palermo"
]
\ []
The client converts$redis->georadius_ro(...) to GEORADIUS RO command. But I want to call GEORADIUS_RO command.
GEORADIUS(BYMEMBER)_RO
variants are added redis/redis@f8547e5 , but it seems that the client cannot call them.Here is sample code.
I expected that
georadius
andgeoradius_ro
return same result, but actually not.The client converts
$redis->georadius_ro(...)
toGEORADIUS RO
command. But I want to callGEORADIUS_RO
command.The text was updated successfully, but these errors were encountered: