zookeeper_client icon indicating copy to clipboard operation
zookeeper_client copied to clipboard

Ruby wrapper for the ZooKeeper C client library

Results 2 zookeeper_client issues
Sort by recently updated
recently updated
newest added

Hi, This fixes the documentation for usage of create(), delete(), get(), set() and get_children().

currently shows: ``` z.create("/bacon","text to be stored in the new node",0) ``` but should be: ``` z.create(:path => "/bacon", :data => "text to be stored in the new node") ```...