Skip to solution
mediumSystem Design

Filtered vector search with pgvector — how do you combine WHERE category = 'X' with ORDER BY embedding <=> $1?

752 views
01

Understand the problem

Solve pre-filter vs post-filter ANN problem using partial indexes or iterative scan for correct recall.

pgvectorfilteringann
02

Attempt it yourself

Sketch your approach before reading the solution — that's what interviews test.

Nudge consolestandby

Stuck? Beam a request up — the console returns a conceptual nudge that guides your logic without spoiling the implementation.

03

Study the solution

Naïve WHERE … ORDER BY vec <=> $1 LIMIT post-filters and may return < LIMIT rows. Fix with a partial HNSW index per hot filter, or enable iterative scan (pgvector 0.6+) so the executor keeps scanning until LIMIT is satisfied after filtering.

Solution ready — 2 min read

Classified // press E to declassify

04

Join the discussion

Discussion (0)

Sign in to join the discussion.

No responses yet. Be the first to share what you think.

Transmission complete // awaiting log

KEEP THE
STREAK ALIVE.

Dossier 33 of 70 decoded in the SQL track. One more won't hurt.

Back to track