method
RedisClient.geohash
...members: string[]
): Promise<null | string[]>;
Return valid Geohash strings representing the position of members
@param key
The key of the geo set
@param members
The members to get hashes for
@returns
Promise that resolves with an array of geohash strings
await redis.geohash("Sicily", "Palermo", "Catania");
// ["sqc8b49rny0", "sqdtr74hyu0"]Referenced types
type KeyLike = string | ArrayBufferView | Blob