Hello, Is there a modern, tested, and recommended C++ client for interacting with ZooKeeper? I've seen a few references around the web to spikes toward an implementation and a couple examples on GitHub, but am not aware of many in active use. I'd be interested to hear if anyone's aware of current work in this area.
The zkfuse package in contrib wraps the C client but appears purpose-built and does not ship with a test suite. Canonical examples of use of the C bindings also seem rare; it looks like the docs are marked TBD <http://zookeeper.apache.org/doc/r3.4.6/zookeeperProgrammers.html#ch_programStructureWithExample> – though Flavio's written a very helpful example <https://github.com/fpj/zookeeper-book-example/tree/master/src/main/c> distributed with the O'Reilly book for 3.5.x. If there is not a preferred C++ example, is there a particularly high-quality wrapping of the C lib that's recommended as a starting point for implementing one? Thanks, – Scott
