Code Room
System designMediumsd-g412
Subject Proximity searchLevel Mid–Senior~45 minCommon in Distributed systems interviewsIndustries Technology

Question

Design the proximity-matching backend for a dating app: a user sees nearby candidate profiles filtered by distance, age, gender preference, and other criteria, ranked by a relevance score. Users move (commuting, traveling) so their location changes; the candidate pool is ~50M profiles; queries must return in <150ms; and exact locations must NOT be exposed (showing '2 miles away' is fine, leaking precise coordinates is a safety problem). Describe the spatial index combined with multi-attribute filtering, how you protect exact location, and the freshness trade-off as users move.

What a strong answer looks like

Clarify scale and constraints first. Propose a clean component breakdown, then go deep on the hard parts — data model, bottlenecks, consistency, failure modes — and name the trade-offs you are making.

Narrate your design
Loading whiteboard…
Run or narrate your approach, then ask the coach.