From e164ea252eb31d2250ff1e1cafc6acf18f742b95 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Fri, 30 Oct 2015 20:03:52 +0000 Subject: [PATCH] mention service registry in readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index fd2d4e2..ef42066 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,12 @@ Three main purposes: Not really a connection pool, because it doesn't keep any connections open, but it does take care of connection management. +### Service Registry + +Now also has a ServiceRegistry class, a lightweight solution for service +discovery for distributed services. Maintains service info and status in a +rethinkdb table called "services". + ## Usage ``` import rethinkstuff @@ -20,3 +26,4 @@ r.table('my_table').insert({'foo':'bar','baz':2}).run() for result in r.table('my_table'): print("result={}".format(result)) ``` +