From 16f9fd63ab8d7069ec536e96d5adc71a76b66023 Mon Sep 17 00:00:00 2001 From: ravigadde Date: Sun, 30 Nov 2014 23:00:24 -0800 Subject: [PATCH] doc: add etcd-lock into libraries-and-tools.md Lock implementation for etcd. It has three go routines: a) acquire - loop that watches for the lock to be free and tries to acquire it. b) watch - to watch for lock changes c) refresh - to refresh the ttl when the lock is acquired All the changes in lock ownership are notified on the events channel. Any feedback welcome! --- Documentation/libraries-and-tools.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/libraries-and-tools.md b/Documentation/libraries-and-tools.md index 2d4b365ca..856d18ea3 100644 --- a/Documentation/libraries-and-tools.md +++ b/Documentation/libraries-and-tools.md @@ -7,6 +7,7 @@ - [etcd-dump](https://npmjs.org/package/etcd-dump) - Command line utility for dumping/restoring etcd. - [etcd-fs](https://github.com/xetorthio/etcd-fs) - FUSE filesystem for etcd - [etcd-browser](https://github.com/henszey/etcd-browser) - A web-based key/value editor for etcd using AngularJS +- [etcd-lock](https://github.com/datawisesystems/etcd-lock) - A lock implementation for etcd **Go libraries**