https://github.com/quangtung97/zk
Zookeeper Client written in pure Go
https://github.com/quangtung97/zk
golang zookeeper-client
Last synced: 3 months ago
JSON representation
Zookeeper Client written in pure Go
- Host: GitHub
- URL: https://github.com/quangtung97/zk
- Owner: QuangTung97
- License: bsd-3-clause
- Created: 2024-03-20T03:11:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-10T07:03:57.000Z (about 1 year ago)
- Last Synced: 2025-01-13T15:16:55.079Z (4 months ago)
- Topics: golang, zookeeper-client
- Language: Go
- Homepage:
- Size: 552 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Native Go Zookeeper Client Library
[](https://github.com/QuangTung97/zk/actions/workflows/go.yml)
[](https://coveralls.io/github/QuangTung97/zk?branch=master)Forked from https://github.com/go-zookeeper/zk
But have replaced most of its interface to help achieve better guarantees:
* Watches, Response Function Calls and other Callbacks (Session Expired, Connection Retry, etc.)
are all happened in a single thread
* Strong watch guarantee: Watch Response Callback MUST happen BEFORE the Response of Create/Set/Delete
that affects the Watch
* When connection is disconnected, all pending operations MUST be finished or response with
errors before a new connection is going to be established## Examples
Examples can be found here: https://github.com/QuangTung97/zk/tree/master/test-examples## License
3-clause BSD. See LICENSE file.