计算机网路四 简单确定性队列 Simple deterministic queue model small packets reduce end to end delay statistical multiplexing Simple deterministic queue model 假设直到t时刻位置队列里累计的字节数为A(t) 假设直到t时刻位置从队列里分发的字节数为D(t) Q(t) = A(t 2023-07-29
Resembler 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991 2023-07-16
设计模式&渲染模式&优化&React Design Pattern Singleton pattern:This single instance can be shared throughout our application, which makes Singletons great for managing global state in an application. 2023-07-15
何为wasm? WebAssembly 是一种新的编码方式,可以在现代的网络浏览器中运行 - 它是一种低级的类汇编语言,具有紧凑的二进制格式,可以接近原生的性能运行,并为诸如 C / C ++等语言提供一个编译目标,以便它们可以在 Web 上运行。它也被设计为可以与 JavaScript 共存,允许两者一起工作。 对于网络平台而言,WebAssembly 具有巨大的意义——这为客户端 app 提供 2023-06-29
faas与severless faas 是什么 为什么? 有什么用? 数据编排——充当BFF => 演化成了SFF(Serverless For Frontend) 优点:我们的函数启动后,调用后端提供的元数据接口,并将返回的元数据加工成前端需要的数据格式;我们的 FaaS 函数完全就可以休息了。 利用快速冷启动的特性 缺点: SSR:——充当SSR severless vs faas ? fass 与轻服务 https 2023-06-22
Network-CS144 の 3 Packet Switching 分组交换 特点: Packets被独立地路由,通过查找当前路由的局部路由表 所有的Packets共享一个完整的Link 路由不需要维护通信状态 路由是有缓存的 缓存在以下情况下会存在Packets: When two or more packets arrive at the same time During periods of congestion Curcuit switchin 2023-06-11 计算机网络 #计算机网络,计算机基础
Network-CS144 の 2 TCP Model TCP模型 性质 行为 字节流 可靠的字节传输服务 可靠传输 确认机制保证了正确有序的传输;checksum检测错误数据,序列号检测丢失数据,滑动窗口式流量控制让值接收方过载;超时和重传机制 有序 有序同步传输(序列号和确认号机制) 用塞控制 TCP连接的唯一ID 1[TCP Data src port , dest port][Ipv4 header, IP 2023-06-11 计算机网络 #计算机网络,计算机基础
斯坦福cs231(编译原理)の 1 Introduction Introduction Compiler vs Interpreter History of Compiler 很喜欢的一句话: When hardware cost the most in absolute and relative terms more than they would ever cost again already, the software was the domina 2023-06-10 编译原理 #编译原理,计算机基础,cool
斯坦福cs231(编译原理)の 2 Lexical Analysis Introduction 12345678编写代码时:if (i == j) z = 0;else z = 1;实际喂给leximal analyzer的:\tif (i == i)\n\t\tz=0;\n\telse\n\t\tz=1; Token Class In English: Noun, Verb, Adjective In Programming language: Identifi 2023-06-10 编译原理 #编译原理,计算机基础,cool