2025-3-16 周记 0x00a
· Life
Review
The database storage layer
Storage is at the heart of databases, lying below execution and query planning, but above the file system, OS, and hardware. Let’s learn about them and get started with our own.
Disk-Oriented DBMS Overview•mmap•LSM Trees•Database Internals
Learning Center | Kong Inc.
所有内容看一遍,包括提供的 eBooks
OpenResty
学习 OpenResty
主要看极客时间的 《OpenResty 从入门到实战》
agentzh 的 Nginx 教程(版本 2020.03.19)
Lua 是先将源码编译为字节码,再由虚拟机执行字节码指令,性能差。
所以有 LuaJIT,将热点代码直接编译成相对应的机器码,直接执行,或者解析执行。