.Net client for etcd - a highly-available key value store for shared configuration and service discovery.
#Getting started
Create the client to work with assuming that you installed etcd on localhost:
IEtcdClient client = new EtcdClient(new Uri("http://localhost:4001/v2/keys/"));
var test = client.Set("test/one", "1");
var test = client.Get("test/one", true);
client.Watch("test/one", FollowUp);
Followup is the callback function:
private static void FollowUp(EtcdResponse obj)
{
// do the thing
}
To be done...