Rust Client for TiKV.
Go to file
Ana Hobden b0a13bba88 Fix a couple warnings
Signed-off-by: Ana Hobden <operator@hoverbear.org>
2019-04-08 19:03:47 -07:00
examples Merge branch 'master' into dont-clone-config 2019-02-25 11:59:56 -08:00
src Fix a couple warnings 2019-04-08 19:03:47 -07:00
tests Fix integration test. 2019-02-25 12:34:33 -08:00
.gitignore Add gitignore 2018-11-13 09:52:13 -08:00
.travis.yml Refine CI (#22) 2019-02-25 11:50:57 -08:00
Cargo.toml Refine CI (#22) 2019-02-25 11:50:57 -08:00
LICENSE Initial commit 2018-08-30 09:23:10 +08:00
README.md Add README and some lib.rs docs (#31) 2019-02-15 14:55:25 -08:00
rust-toolchain The initial version of Raw KV implementation (#14) 2019-01-13 14:03:21 -08:00

README.md

TiKV Client (Rust)

Build Status Documentation

Currently this crate is experimental and some portions (e.g. the Transactional API) are still in active development. You're encouraged to use this library for testing and to help us find problems!

This crate provides a clean, ready to use client for TiKV, a distributed transactional Key-Value database written in Rust.

With this crate you can easily connect to any TiKV deployment, interact with it, and mutate the data it contains.

This is an open source (Apache 2) project hosted by the Cloud Native Computing Foundation (CNCF) and maintained by the TiKV Authors. We'd love it if you joined us in improving this project.

Install

There are no special requirements to use this. It is a Rust 2018 edition crate supporting stable and nightly.

To use this crate in your project, add it as a dependency in the Cargo.toml of your Rust project:

[dependencies]
# ...Your other dependencies...
tikv-client = "~0.1"

Access the documentation

We recommend using the cargo-generated documentation to browse and understand the API. We've done our best to include ample, tested, and understandable examples.

You can visit docs.rs/tikv-client, or build the documentation yourself.

You can access the documentation on your machine by running the following in any project that depends on tikv-client.

cargo doc --package tikv-client --open
# If it didn't work, browse file URL it tried to open with your browser.