This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
clickhouse-study/README.md

26 lines
459 B
Markdown
Raw Normal View History

学习ClickHouse笔记
# 源码编译
2023-05-31 15:08:36 +00:00
编译命令
```bash
git clone git@github.com:ClickHouse/ClickHouse.git -b 23.4
cd ClickHouse
git submodule update --init --recursive
mkdir build && cd build
cmake .. -DCMAKE_CXX_COMPILER=`which clang++` -DCMAKE_C_COMPILER=`which clang` -DCMAKE_BUILD_TYPE=release -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON
ninja
```
# 性能优化
[性能变慢的因素](./bad/README.md)
2023-06-02 15:28:14 +00:00
# 基础知识
[引擎](./engine/README.md)