Skip to content

Commit

Permalink
Poorman SEO.
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Oct 25, 2015
1 parent 96fcac6 commit 05394be
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -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() {
Expand Down Expand Up @@ -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:

Expand All @@ -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).

0 comments on commit 05394be

Please sign in to comment.