Search Indexing
Everything on SkillVeris tagged Search Indexing — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
How Would You Design Google Drive?
Designing Google Drive builds on a chunked-storage-and-sync foundation like Dropbox but adds a real-time collaborative editing layer, where concurrent edits to…
How to Design a Web Crawler
A web crawler is designed as a distributed pipeline of a URL frontier, fetchers, parsers, and a dedup/storage layer, where politeness rules, priority schedulin…
How to Design Search Autocomplete (Typeahead)
Search autocomplete is designed with a trie (or a precomputed top-K index per prefix) built offline from query logs, served from an in-memory cache so each key…