Tag

proximity search

1 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
May 28, 2024 · Fundamentals

Understanding GeoHash: Principles and Application for Proximity Queries

This article explains the GeoHash algorithm, describing how latitude‑longitude coordinates are converted into binary strings and Base32 codes, how these codes enable efficient proximity searches such as finding nearby ride‑hailing passengers, and discusses the limitations of the approach.

Backendalgorithmgeohash
0 likes · 7 min read
Understanding GeoHash: Principles and Application for Proximity Queries
Architect
Architect
Oct 21, 2022 · Databases

Designing Efficient POI Proximity Search with MySQL, GeoHash, and Redis

This article explains how to implement fast nearby POI queries by calculating distances with the Haversine formula, designing MySQL tables and indexes, applying GeoHash for dimensionality reduction, and leveraging Redis Geo for high‑concurrency scenarios, while also providing Go code examples for each step.

GoMySQLRedis
0 likes · 29 min read
Designing Efficient POI Proximity Search with MySQL, GeoHash, and Redis