node-georedis icon indicating copy to clipboard operation
node-georedis copied to clipboard

Super fast geo queries.

Results 13 node-georedis issues
Sort by recently updated
recently updated
newest added

let result = await store.nearby({ latitude: lat, longitude: lng }, 30);

I've created a promise-based wrapper at https://github.com/benallfree/georedis-promised.

Currently it is not possible to use readonly variants GEORADIUS_RO and GEORADIUSBYMEMBER_RO. Please add these readonly variants. See: * Discussion: https://github.com/redis/redis/issues/4084 * Commit: https://github.com/redis/redis/commit/d557144ebbd58deb67cfbddf4d5c675bafb523c6 * Documentation: https://redis.io/commands/georadius

enhancement
help wanted

I am trying to use 'ioredis' with georedis but getting error ` const Redis = require("ioredis"); const redisClient = new Redis( config.get('database').redis.port, config.get('database').redis.ip); let geo = require('georedis').initialize(redisClient); let driverslocations =...

Hi, It's a really interesting and great library, thanks for saving lot of our work. I am getting below error when I run `nearby` in redis cluster. > {"correlationId":"89a9922e-019d-47d5-a8fd-804ae261b3b0","data":{"message":"MOVED 3400...

Im using below options and get nearby orders : ``` var options = { withCoordinates: true, // Will provide coordinates with locations, default false withHashes: true, // Will provide a...

My app shows a list of nearby ATMs. At first only the 20 closest ATMs are shown in the list (see screenshot below). When the user scrolls, more ATMs are...

enhancement

Good day, I would like to implement geohashing based on your module, but using own storage ( not redis ). Currently I store locations as int geohash (bit depth 52)....

question