# tikv-client-cpp **Repository Path**: keijack/tikv-client-cpp ## Basic Information - **Project Name**: tikv-client-cpp - **Description**: tikv CPP 的客户端,从 https://github.com/tikv/client-cpp fork,修改了 transaction 客户端中 runtime 使用 Tokio 的 runtime - **Primary Language**: Rust - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-30 - **Last Updated**: 2023-11-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # TiKV Client for C++ TiKV client for C++. So far, it only supports synchronous API. It's built on top of [TiKV Client in Rust](https://github.com/tikv/client-rust) via [cxx](https://github.com/dtolnay/cxx). This client is still in the stage of prove-of-concept and under heavy development. ## Prepare ```bash # install rust environment curl https://sh.rustup.rs -sSf | sh ``` ## Build ```bash ## compile in build directory cmake -S . -B build && cmake --build build ## install to /usr/local sudo cmake --install build ``` ## Run example ```bash # run with tikv-server tiup playground nightly cd examples && cmake -S . -B build && cmake --build build # run raw example ./build/raw ```