Skip to content
败犬日报 2025-12-15

败犬日报 2025-12-15

1. 关于 Erlang 模块的讨论

http://lambda-the-ultimate.org/node/5079

2. std::string 有 ABI 不兼容

考虑 c++11 之后,如果链了 libstdc++,std::string 会被 name mangle 为 std::__cxx11::string,libc++ 为 std::__11::string

所以混用(比如说主程序链了 libstdc++,库链了 libc++)就会出问题。

3. Pimpl 必须在源文件里实现析构函数

https://cntransgroup.github.io/EffectiveModernCppChinese/4.SmartPointers/item22.html

4. 字节内部演进实录:Redis 迁移 Valkey,以一体化破解 AI 集群规模魔咒(文章)

https://mp.weixin.qq.com/s/WKvk4O5gSY2zugzhBUOTCg

5. Weak AVL 树

https://maskray.me/blog/2025-12-14-weak-avl-tree

平衡程度在 AVL 和红黑树之间。