From 32650a50238d361fa54035aa5e5f512c5c5a0ba6 Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Sat, 20 Aug 2016 10:23:11 -0700 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 472281c..35da790 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,25 @@ -Redcon [![GoDoc](https://godoc.org/github.com/tidwall/redcon?status.svg)](https://godoc.org/github.com/tidwall/redcon) -====== -Super fast Redis RESP server implementation. -Supports pipelining and telnet commands. +

+REDCON +
+Build Status +GoDoc +

-There is only one function `ListenAndServe`, and one type `Conn`. +

Fast Redis server implementation for Go

+ +Features +-------- +- Supports pipelining and telnet commands. +- Simple interface. One function `ListenAndServe` and one type `Conn`. +- Works with Redis clients such as [redigo](https://github.com/garyburd/redigo), [redis-py](https://github.com/andymccurdy/redis-py), [node_redis](https://github.com/NodeRedis/node_redis), and [jedis](https://github.com/xetorthio/jedis) Installing ---------- ``` -go get github.com/tidwall/redcon +go get -u github.com/tidwall/redcon ``` Example