From 05394bee7cbd1c5771438f34eb02cc8eee832a66 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Sun, 25 Oct 2015 13:30:26 +0200 Subject: [PATCH] Poorman SEO. --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42e0686a..25b9c819 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -Redis client for Golang [![Build Status](https://travis-ci.org/go-redis/redis.png?branch=master)](https://travis-ci.org/go-redis/redis) -======================= +# Redis client for Golang [![Build Status](https://travis-ci.org/go-redis/redis.png?branch=master)](https://travis-ci.org/go-redis/redis) Supports: @@ -17,15 +16,13 @@ Supports: API docs: http://godoc.org/gopkg.in/redis.v3. Examples: http://godoc.org/gopkg.in/redis.v3#pkg-examples. -Installation ------------- +## Installation Install: go get gopkg.in/redis.v3 -Quickstart ----------- +## Quickstart ```go func ExampleNewClient() { @@ -65,13 +62,11 @@ func ExampleClient() { } ``` -Howto ------ +## Howto Please go through [examples](http://godoc.org/gopkg.in/redis.v3#pkg-examples) to get an idea how to use this package. -Look and feel -------------- +## Look and feel Some corner cases: @@ -94,3 +89,7 @@ Some corner cases: EVAL "return {KEYS[1],ARGV[1]}" 1 "key" "hello" vals, err := client.Eval("return {KEYS[1],ARGV[1]}", []string{"key"}, []string{"hello"}).Result() + +## Shameless plug + +Check my [PostgreSQL client for Go](https://github.com/go-pg/pg).