https://github.com/frosenberg/zk-pcache
https://github.com/frosenberg/zk-pcache
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frosenberg/zk-pcache
- Owner: frosenberg
- Created: 2016-11-14T22:29:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-14T22:30:43.000Z (over 9 years ago)
- Last Synced: 2025-03-23T18:52:20.001Z (over 1 year ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zookeeper PathCache implementation
Taken from [here](https://github.com/skynetservices/zkmanager) and extracted to be standalone.
### Run tests
Run Zookeeper instance:
```
docker run -d --rm -p 2181:2181 jplock/zookeeper
```
Run tests:
```
go test
```
If Zookeeper is not accessible via `localhost:2181`, then run the tests as follows:
```
ZK_SERVER=:2181 go test
```