总的来说,太原是类似于西安的城市,类似的气候,类似的历史文化。但在游玩体验来讲,太原总体略优于西安,主要是:
- 西安商业化太浓重了,例如大唐不夜城、城墙上骑车等。当然这也不是坏事,但如果玩的多了,就会觉得商业化严重的景点如同预制菜一样,不能说不好吃,但感觉容易腻
- 西安人太多了
但太原的问题主要是:
- 交通很不方便。虽然也看到它有专门的旅游线路,并且感觉是用心的,但体验上确实还有欠缺。
总的来说,太原是类似于西安的城市,类似的气候,类似的历史文化。但在游玩体验来讲,太原总体略优于西安,主要是:
但太原的问题主要是:
记录了 TiCI 上线过程中遇到的一些问题:
在 x86 上可以跑,但是在 arm linux 上就报这个错误。
1 | /tiflash/tiflash: symbol lookup error: /tiflash/libtici_search_lib.so: undefined symbol: pthread_atfork |
基于 tokio 1.46.0 版本
通过 https://kernel.dk/io_uring.pdf 简单学习下 io_uring。
主要关注:
基本来自于我的问题,以及我对通过 chat 学习到的东西的总结,由 AI 整理。完整版我放在腾讯文档中,这里选取一些方便摘录的写成博客。
在 rust 中,immutable 的数据结构的性质是非常好的。在大部分函数式语言中,都不允许存在 mutable 的数据。
如果要在不可变数据结构上进行修改,就需要 clone 一份出来。因此:
所以有了 Persistent data structures 的概念:
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.