Geospatial Index
Last updated
Last updated
Proximity Searches: These find items close to a given point, such as the nearest restaurants to a user's location.
Radius Queries: These queries retrieve items within a specific distance from a point. They are useful for services like delivery area checks or local event discovery.
Distance Calculation: Calculate the distance between two geo points.
GEOADD to add a point GEODIST to find the distance between two points GEOSEARCH to find all points within a radius
Check Python example