摘要:
1. BufferPool What is BufferPool? MySQL InnoDB Buffer Pool,MySQL InnoDB 缓冲池。里面缓存着大量数据(数据页),使 CPU 读取或写入数据时,不直接和低速的磁盘打交道,直接和缓冲区进行交互,从而解决了因为磁盘性能慢导致的数据库性能 阅读全文
摘要:
CMake Tutorial github.com/Kitware/CMake How to write “CMakeLists.txt” for a big project with multiple subdirectories? CMake官网提供了一个教程CMake Tutorial,比较简 阅读全文
摘要:
C++ Core Guidelines: Be Aware of the Traps of Condition Variables C++11中condition_variable的陷阱 《C++ Concurrency In Action》读书笔记 - 线程间同步机制 condition_vari 阅读全文