当前位置:网站首页>Design a key value cache to save the results of the most recent Web server queries
Design a key value cache to save the results of the most recent Web server queries
2022-07-06 13:08:00 【Geometer】
The old rule is to look at the question first
Use cases We’ll scope the problem to handle only the following use cases
User sends a search request resulting in a cache hit
User sends a search request resulting in a cache miss
Service has high availability Constraints and assumptions
State assumptions Traffic is not evenly distributed
Popular queries should almost always be in the cache
Need to determine how to expire/refresh Serving from cache requires fast lookups
Low latency between machines Limited memory in cache
Need to determine what to keep/remove
Need to cache millions of queries 10 million users 10 billion queries per month
Calculation :
The ordered lists of cached keys are query, value: results
query - 50 bytes
title - 20 bytes
snippet - 200 bytes
Total: 270 bytes
That is to say, a single cache probably needs 270bytes
If 10 billion Every data of our users is unique
It can be calculated that the storage consumption of a month is 2.7t
4000 requests per second = 01 billion requests per month
That is, about 4000 requests per second, on average
Create a high level design
Because the capacity of cache is limited , So we need to set an expiration policy , Here we can use LRU Mechanism
The specific design is as follows :
1.client Send a request to webserver, Run the reverse proxy
2.webserver Execute the query api
3. Inquire about api Will perform the following operations
1) Analytic grammar :
Delete tag
Break the text down into terms
Fix spelling mistakes
Normalized capitalization
Convert queries to use Boolean operations
2) Check whether the cache is hit :
If hit :
utilize LRU Mechanism update cache
Return cached content
If you don't hit :
Use Reverse Index Service Find matching documents , Rank the documents found by using matching pairs , The highest ranking document is the document to be found
Use Document Service return titles and snippets
Update the contents of the cache , to update LRU
About LRU The implementation of is actually a good design , Yes, it is hash+ The structural design of the linked list can make the time complexity of its insertion and search constant ,lc There is a related algorithm problem , If you forget, you can have a look , This question Java It's faster to write ,cpp Write all the basic operations by yourself hhh
https://leetcode.cn/problems/lru-cache/
Inquire about api The implementation of the :
class QueryApi(object):
def __init__(self, memory_cache, reverse_index_service):
self.memory_cache = memory_cache
self.reverse_index_service = reverse_index_service
def parse_query(self, query):
"""Remove markup, break text into terms, deal with typos, normalize capitalization, convert to use boolean operations. """
...
def process_query(self, query):
query = self.parse_query(query)
results = self.memory_cache.get(query)
if results is None:
results = self.reverse_index_service.process_search(query)
self.memory_cache.set(query, results)
return results
Implementation of nodes :
class Node(object):
def __init__(self, query, results):
self.query = query
self.results = results
The realization of linked list :
class LinkedList(object):
def __init__(self):
self.head = None
self.tail = None
def move_to_front(self, node):
...
def append_to_front(self, node):
...
def remove_from_tail(self):
...
Cache implementation :
class Cache(object):
def __init__(self, MAX_SIZE):
self.MAX_SIZE = MAX_SIZE
self.size = 0
self.lookup = {
} # key: query, value: node
self.linked_list = LinkedList()
def get(self, query)
"""Get the stored query result from the cache. Accessing a node updates its position to the front of the LRU list. """
node = self.lookup[query]
if node is None:
return None
self.linked_list.move_to_front(node)
return node.results
def set(self, results, query):
"""Set the result for the given query key in the cache. When updating an entry, updates its position to the front of the LRU list. If the entry is new and the cache is at capacity, removes the oldest entry before the new entry is added. """
node = self.lookup[query]
if node is not None:
# Key exists in cache, update the value
node.results = results
self.linked_list.move_to_front(node)
else:
# Key does not exist in cache
if self.size == self.MAX_SIZE:
# Remove the oldest entry from the linked list and lookup
self.lookup.pop(self.linked_list.tail.query, None)
self.linked_list.remove_from_tail()
else:
self.size += 1
# Add the new key and value
new_node = Node(query, results)
self.linked_list.append_to_front(new_node)
self.lookup[query] = new_node
Cache finer conditions :
Page content changes
Delete a page or add a new page
Page ranking changes
The most direct way to solve these problems is to set a maximum time
Thank you very much for reading to the end , Thank you for your support . Interested students can see this post of mine
System design study ( One )Design Pastebin.com (or Bit.ly)
边栏推荐
- One article to get UDP and TCP high-frequency interview questions!
- 最短Hamilton路径 (状压DP)
- First acquaintance with C language (Part 1)
- [untitled]
- rtklib单点定位spp使用抗差估计遇到的问题及解决
- Music playback (toggle & playerprefs)
- Realization of the code for calculating the mean square error of GPS Height Fitting
- 121道分布式面试题和答案
- [Chongqing Guangdong education] reference materials for regional analysis and planning of Pingdingshan University
- Record: solution of 404 error of servlet accessing database in dynamic web project
猜你喜欢
Heap sort [handwritten small root heap]
[算法] 剑指offer2 golang 面试题5:单词长度的最大乘积
3月15号 Go 1.18 正式版发布 了解最新特色以及使用方法
2-year experience summary, tell you how to do a good job in project management
[algorithm] sword finger offer2 golang interview question 5: maximum product of word length
[算法] 剑指offer2 golang 面试题10:和为k的子数组
TYUT太原理工大学2022“mao gai”必背
几道高频的JVM面试题
继承和多态(上)
Music playback (toggle & playerprefs)
随机推荐
WSL common commands
记录:下一不小心写了个递归
10 minutes pour maîtriser complètement la rupture du cache, la pénétration du cache, l'avalanche du cache
IText 7 generate PDF summary
First acquaintance with C language (Part 1)
KF UD decomposition pseudo code implementation advanced [2]
[算法] 剑指offer2 golang 面试题7:数组中和为0的3个数字
[algorithme] swordfinger offer2 golang question d'entrevue 2: addition binaire
十分鐘徹底掌握緩存擊穿、緩存穿透、緩存雪崩
[Yu Yue education] guide business reference materials of Wuxi Vocational and Technical College of Commerce
[算法] 剑指offer2 golang 面试题9:乘积小于k的子数组
TYUT太原理工大学2022数据库题库选择题总结
平衡二叉树详解 通俗易懂
继承和多态(上)
Answer to "software testing" exercise: Chapter 1
系统设计学习(二)Design a key-value cache to save the results of the most recent web server queries
【无标题】
2022国赛Re1 baby_tree
MySQL backup -- common errors in xtrabackup backup
Basic DOS commands