redigo moved to gomodule
This commit is contained in:
@@ -9,7 +9,7 @@ As the C language of the 21st century, Go has good support for NoSQL databases,
|
||||
redis is a key-value storage system like Memcached, that supports the string, list, set, zset(ordered set) and hash value types.
|
||||
|
||||
There are some Go database drivers for redis:
|
||||
- [https://github.com/garyburd/redigo](https://github.com/garyburd/redigo)
|
||||
- [https://github.com/gomodule/redigo](https://github.com/gomodule/redigo)
|
||||
- [https://github.com/go-redis/redis](https://github.com/go-redis/redis)
|
||||
- [https://github.com/hoisie/redis](https://github.com/hoisie/redis)
|
||||
- [https://github.com/alphazero/Go-Redis](https://github.com/alphazero/Go-Redis)
|
||||
@@ -22,7 +22,7 @@ Let's see how to use the driver that redigo to operate on a database:
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/garyburd/redigo/redis"
|
||||
"github.com/gomodule/redigo/redis"
|
||||
"os"
|
||||
"os/signal"
|
||||
"syscall"
|
||||
|
||||
Reference in New Issue
Block a user