Skip to content
Independent, unofficial fan resource. Not affiliated with Rockstar Games or Take-Two Interactive. GTA VI content is used descriptively.

Search

Question-first search — answer cards, not just links. Postgres FTS + pg_trgm. Alias/typo tolerant.

Try:fuel systemCheetahJaysonVice Citywanted starsGrotti CheetaVice
1 result for “Jayson” — answer cards first.
entityjason-duval
Jason Duval
Protagonist of GTA VI. Former soldier, connected to the Leonida underworld.
See evidence & history →alias_trgm:0.44:jason
How search works
Postgres full-text search + pg_trgm (trigram) with alias expansion. Query is matched against title, body, and entity_aliases; typo tolerance via similarity() ≥ 0.3 (tunable via CONFIG_KV search:trigram_threshold). Ranking: FTS rank × trigram bonus × alias bonus, deterministic tie-break by slug. Index updates are async via QUEUE_SEARCH_INDEX (60s SLA). No external vendor (Typesense/Algolia/etc.) and no AI free-association.
Postgres SQL template is in src/lib/search.ts:POSTGRES_SEARCH_SQL and src/app/api/search/route.ts; in-memory fixtures mirror it for local dev/tests without Hyperdrive.