An open API service indexing awesome lists of open source software.

https://github.com/goapt/redis

base go-redis connection library
https://github.com/goapt/redis

Last synced: about 2 months ago
JSON representation

base go-redis connection library

Awesome Lists containing this project

README

        

# redis
base on go-redis library

Build Status
codecov
Go Report Card
<br />
GoDoc

## Usage

```shell script
go get github.com/goapt/redis
```

```go
configs := make(map[string]redis.Config)

configs["default"] = Config{
Server: "127.0.0.1:6379",
}

redis.Connect(configs)
client := redis.NewRedisWithName("default")
```