Hi Camille,

> Check out ZKClient: https://github.com/sgroschupf/zkclient
>
> The way this client deals with sessions is pretty nice and clean and I ended 
> up using a lot of this code as the basis for my Java client.

Looking at the code base feels like a pretty dumb wrapper on top of
standard ZK.  For instance:

  public boolean exists(String path, boolean watch) throws
KeeperException, InterruptedException {
        return _zk.exists(path, watch) != null;
  }

So I'm curious about why, in the context of the questioning made, you
feel like it's significant.

-- 
Gustavo Niemeyer
http://niemeyer.net
http://niemeyer.net/blog
http://niemeyer.net/twitter

Reply via email to