Crates.io | zookeeper-zk |
lib.rs | zookeeper-zk |
version | 0.7.3 |
source | src |
created_at | 2023-04-03 07:36:33.199459 |
updated_at | 2023-05-31 12:59:52.930361 |
description | A minimal ZooKeeper client |
homepage | https://github.com/yangsenzk/rust-zookeeper |
repository | https://github.com/yangsenzk/rust-zookeeper |
max_upload_size | |
id | 828893 |
size | 152,336 |
Zookeeper client written 100% in Rust
This library is intended to be equivalent with the official (low-level) ZooKeeper client which ships with the official ZK distribution.
I have plans to implement recipes and more complex Curator like logic as well, but that takes a lot of time, so pull requests are more than welcome! At the moment only PathChildrenCache is implemented.
Put this in your Cargo.toml:
[dependencies]
zookeeper = "0.6"
And this in your crate root:
extern crate zookeeper;
Check the examples directory
Also if you find a bug or would like to see a feature implemented please raise an issue or send a pull-request.
Documentation is available on the gh-pages branch.
cd zk-test-cluster
mvn clean package
cd ..
cargo test
All contributions are welcome! If you need some inspiration, please take a look at the currently open issues.