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