The C++ TiKV client used by TiFlash.
Go to file
Liqi Geng 929db9cc74
Downgrade some error logs (#214)
Signed-off-by: gengliqi <gengliqiii@gmail.com>
2025-09-19 02:30:11 +00:00
ci
cmake
include/pingcap
src
third_party
.clang-format
.clang-tidy
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
OWNERS
README.md
format.sh

README.md

Overview

TiKV Client C++ allow you to access TiKV from C and C++ applications.

The code is in an early alpha status. Currently, it is only used by TiFlash.

License

Apache-2.0 License

Docs

The docs can be found here.

Building

Install dependencies (adjust for your platform):

sudo dnf install cmake grpc-devel poco-devel abseil-cpp-devel gcc-c++

Update submodules

git submodule update --init --recursive

Build:

mkdir build
cd build
cmake ..
make