<dependency>
<groupId>net.floatingsun</groupId>
<artifactId>jetcd</artifactId>
<version>0.3.0</version>
</dependency>
// Connects to "http://127.0.0.1:4001" by default
EtcdClient client = EtcdClientFactory.newInstance();
// Use EtcdClientFactory.newInstance(serverUrl) to override
client.setKey("hello", "world");
client.getKey("hello") // returns "world"
client.deleteKey("hello")
- multiple servers with redirect
- retries and better failure handling
- better unification of 'getKey' and 'list'
- support for watch