前提条件:已经学会TIKV编译和环境搭建
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
环境:
window11 + WSL(Windows Subsystem for Linux)
git clone git@github.com:watchpoints/tikv.git
## 配置你的 Rust 工具链
rustc 是 rust 的编译器,cargo 是 rust 的包管理器
Rust 中的发布有三种:
- Nightly
- Beta
- Stable
rustc -V
rustc 1.77.0-nightly (89e2160c4 2023-12-27)
编译:
make build
参考:https://maiyang.me/post/2018-08-02-rust-guide-by-tikv/
|
方法1:我不提交代码 我看别人代码
https://github.com/tikv/tikv/pull/18329
https://github.com/tikv/tikv/pull/18227