zookeeper-cpp icon indicating copy to clipboard operation
zookeeper-cpp copied to clipboard

A ZooKeeper client for C++.

Results 36 zookeeper-cpp issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/66285269/160357941-0d7df671-1321-4a2e-9177-2f1bf778f907.png) stion" tag. On Ubantu, I downloaded a lot of dependencies from your Dockfile. Execute runtest. I want to know if this builds successfully If successful, why only one Cpp...

Env: ``` ubuntu18.04 g++ (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 ``` Code: ``` int main() { // Start a ZK server running on localhost (not needed if you just want a client, but...

enhancement
lib/main
documentation

Hi, I have the problem making the library on centos with the message above. Thanks Patrick

I have some trouble when run project with cmake. the errors listed as follows. Can anyone give me some advices about it,please? ``` cong@pc:~/Program/zookeeper-cpp$ cmake . -- Software Version: 0.2.3...

Idea : `zk::connection` should provide a way to `reconnect` after a connection is loss, as well as an atomic state Considering the following example : ```cpp zk::connection con = zk::connection::connection("zk://addr:port/?opts");...

Is there a way to cancel connection ? For instance, when trying to connect to a Zk server that is not running, how can we abord the connection attempt ?...

While this project is great, it lacks documentation about how to integrate it into others CMake projects as dependency. _(My bad if it already exists somewhere else, so my point...

Where is the CMake target mentioned in the [documentation](https://github.com/tgockel/zookeeper-cpp#zkfake) ? Not implemented yet ? I'd like to use it to implement some UTs. Ps : Cannot set a label ?

question

In the top-level CMakeLists, line 24 : ```cmake list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules/") ``` Should be instead : ```cmake list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/") ``` With this quickfix, the current project can be now...

There should be a way to use `boost::future` and `boost::promise` for `zk::future` and `zk::promise`. Something along the lines of `cmake -DZKPP_BUILD_SETTING_FUTURE=BOOST_THREAD ..`. While we're here, better documentation for how to...

enhancement
lib/main
priority/medium