System Design Problem

Design a Search Engine (Google)

Commonly Asked By:GoogleMicrosoftAmazon

  • Accept a text query and return a ranked list of relevant web pages
  • Support keyword matching, phrase matching, and boolean queries
  • Rank results by relevance (PageRank + text relevance + freshness + personalization)
  • Display result snippets (title, URL, description with highlighted keywords)
  • Support autocomplete/typeahead (see #11)
  • Support image, video, and news search (vertical search)
  • Spell correction: "systm desgn" → "Did you mean: system design?"
  • Knowledge panels for entities (people, places, companies)
  • Pagination of results
Loading...