Complete the code to identify the main component responsible for storing searchable data in a search system.
The component that stores searchable data for quick retrieval is called the [1].
The Index stores documents to enable fast search retrieval.
Complete the code to specify the component that ranks search results based on relevance.
The component responsible for ordering search results by relevance score is the [1].
The Ranker assigns scores to results and sorts them to show the most relevant first.
Fix the error in the description of the recommendation system's data source.
A recommendation system primarily uses [1] data to suggest items to users.Recommendation systems rely on transactional data like user purchases or clicks to make suggestions.
Fill both blanks to complete the description of a common recommendation algorithm.
The [1] filtering algorithm recommends items based on [2] similarities between users.
Collaborative filtering uses behavioral similarities (like past purchases) between users to recommend items.
Fill all three blanks to complete the architecture description for a scalable search system.
User requests first hit the [1], then are routed to the [2] which queries the [3] for results.
Requests go to the Load Balancer, then to the Search Server, which queries the Index to find results.
