当前位置:网站首页>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)
边栏推荐
- 几道高频的JVM面试题
- Music playback (toggle & playerprefs)
- [GNSS data processing] Helmert variance component estimation analysis and code implementation
- isEmpty 和 isBlank 的用法区别
- 【快趁你舍友打游戏,来看道题吧】
- IText 7 generate PDF summary
- Several high-frequency JVM interview questions
- 十分钟彻底掌握缓存击穿、缓存穿透、缓存雪崩
- TYUT太原理工大学2022软工导论考试题型大纲
- Fundamentals of UD decomposition of KF UD decomposition [1]
猜你喜欢
121 distributed interview questions and answers
Excel导入,导出功能实现
[算法] 剑指offer2 golang 面试题9:乘积小于k的子数组
[算法] 剑指offer2 golang 面试题6:排序数组中的两个数字之和
[untitled]
Ten minutes to thoroughly master cache breakdown, cache penetration, cache avalanche
阿里云微服务(一)服务注册中心Nacos以及REST Template和Feign Client
2-year experience summary, tell you how to do a good job in project management
Basic DOS commands
TYUT太原理工大学2022“mao gai”必背
随机推荐
Several high-frequency JVM interview questions
初识C语言(上)
十分钟彻底掌握缓存击穿、缓存穿透、缓存雪崩
10 minutes pour maîtriser complètement la rupture du cache, la pénétration du cache, l'avalanche du cache
On March 15, the official version of go 1.18 was released to learn about the latest features and usage
Record: newinstance() obsolete replacement method
MySQL backup -- common errors in xtrabackup backup
Detailed explanation of balanced binary tree is easy to understand
基本Dos命令
[algorithme] swordfinger offer2 golang question d'entrevue 2: addition binaire
TYUT太原理工大学2022数据库大题之概念模型设计
The port is occupied because the service is not shut down normally
系统设计学习(三)Design Amazon‘s sales rank by category feature
[算法] 剑指offer2 golang 面试题13:二维子矩阵的数字之和
165. Compare version number - string
167. Sum of two numbers II - input ordered array - Double pointers
[algorithm] sword finger offer2 golang interview question 12: the sum of the left and right sub arrays is equal
抽象类和接口
阿里云微服务(三)Sentinel开源流控熔断降级组件
Shortest Hamilton path (pressure DP)