摘要: Fast Path (like 1 minute, 5 minutes) Use a count-min sketch algorithm (Counting frequency by using multiple hash functions) and aggregates data for a 阅读全文
posted @ 2021-11-09 14:02 YBgnAW 阅读(173) 评论(0) 推荐(0) 编辑
摘要: CREATED: 2021/10/21 22:49 1) Distributed file system2) Web socket3) Collaboration subsystem4) Operational Transform5) CRDT 以上几点技术 有比较常见的到很专门用于协同操作的技术 阅读全文
posted @ 2021-10-22 13:50 YBgnAW 阅读(170) 评论(0) 推荐(0) 编辑
摘要: CREATED 2021/09/15 22:15 Design Tiny URL System Functional requirements 1. URL shortening: given a long url, return a short url 2. URL redirecting: gi 阅读全文
posted @ 2021-09-16 13:23 YBgnAW 阅读(318) 评论(0) 推荐(0) 编辑
摘要: CREATED 2021/09/13 22:10 PM Basic Requirements put(K,V) or put(K,V,timestamp) get(K) size of K-V pair is very small, less than 10KB. Choose AP or CP B 阅读全文
posted @ 2021-09-14 13:49 YBgnAW 阅读(77) 评论(0) 推荐(0) 编辑
摘要: CREATED 2021/08/17 23:13:39 MODIFIED 2021/12/01 21:27:00 Kafka Apache Kafka is a publish-subscribe based durable messaging system. A messaging system 阅读全文
posted @ 2021-08-27 14:58 YBgnAW 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 2021/08/03 Node with template T or <K,V> template <class T> struct Node { T value; Node* left; Node* right; Node(T x) { value = x;left = right = NULL; 阅读全文
posted @ 2021-08-04 15:08 YBgnAW 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Created in 2021-06-01 23:20 A record AND CNAME The A record points a name to a specific IP. The CNAME record points a name to another name instead of 阅读全文
posted @ 2021-06-02 14:23 YBgnAW 阅读(29) 评论(0) 推荐(0) 编辑
摘要: CREATED 2021-04-19 10:25PM Functional Requrements: upload, view, share, like/dislike, comment, search, change resolution... Non-Functional Requrements 阅读全文
posted @ 2021-04-27 13:51 YBgnAW 阅读(39) 评论(0) 推荐(0) 编辑
摘要: sounce: https://www.1point3acres.com/bbs/forum.php?mod=viewthread&tid=745881 题目两年不变。具体的题目描述可以看之前的帖子。但考很多multi-threading和distributed system的基础知识以及不断深挖。 阅读全文
posted @ 2021-04-10 13:41 YBgnAW 阅读(142) 评论(0) 推荐(0) 编辑
摘要: CREATED: 2021-02-28 15:00 production 生产环境 devops 运维开发 https://www.bilibili.com/video/BV1AZ4y1379A?p=2&spm_id_from=pageDriver CPU从内存里面读取指令和数据 工作线程数是不是设 阅读全文
posted @ 2021-03-01 09:56 YBgnAW 阅读(56) 评论(0) 推荐(0) 编辑