通过 https://kernel.dk/io_uring.pdf 简单学习下 io_uring。
LLM 基础概念和核心问题整理
发表于
Persistent data structures
发表于
在 rust 中,immutable 的数据结构的性质是非常好的。在大部分函数式语言中,都不允许存在 mutable 的数据。
如果要在不可变数据结构上进行修改,就需要 clone 一份出来。因此:
- 对于一些较大的结构,希望能够尽量复用
- 如果此时只有一份引用,则可以直接获取 mut 引用就地修改
所以有了 Persistent data structures 的概念:
- 每一次修改该结构,都会保留之前的版本
- 历史的版本可以被查询
- 如果历史版本的数据也支持修改,则称为 Full persistence,否则称为 Partial persistence
Zero-Copy 技术
发表于
My Experience of Building a Hybrid Rust/C++ Project
发表于
Since April 2025, I have been actively contributing to a new Rust–C++ project. Through this work, I have gained many valuable insights. Although I cannot disclose most project details, there are numerous technical challenges worth discussing.
One of the most notable aspects of this project is that it has been developed alongside the rapid evolution of AI agents, which led us to encounter many pitfalls when practicing vibe coding.
乒乓球训练纪实
发表于
因为五一节打羽毛球把膝盖打出问题了,现在主要学习乒乓球了
关西2
发表于
趁着清明节又去了一趟关西。本以为是度假,但实际上累得要死。
Database paper part 7
发表于
包含:
- We Ain’t Afraid of No File Fragmentation: Causes and Prevention of Its Performance Impact on Modern Flash SSDs
法语学习纪要
发表于
在小绿鸟上学法语。
Fuse 学习
发表于