Skip to content

Commit faa1edc

Browse files
committed
redigo moved to gomodule
1 parent 184e305 commit faa1edc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

en/05.6.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ As the C language of the 21st century, Go has good support for NoSQL databases,
99
redis is a key-value storage system like Memcached, that supports the string, list, set, zset(ordered set) and hash value types.
1010

1111
There are some Go database drivers for redis:
12-
- [https://github.com/garyburd/redigo](https://github.com/garyburd/redigo)
12+
- [https://github.com/gomodule/redigo](https://github.com/gomodule/redigo)
1313
- [https://github.com/go-redis/redis](https://github.com/go-redis/redis)
1414
- [https://github.com/hoisie/redis](https://github.com/hoisie/redis)
1515
- [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:
2222

2323
import (
2424
"fmt"
25-
"github.com/garyburd/redigo/redis"
25+
"github.com/gomodule/redigo/redis"
2626
"os"
2727
"os/signal"
2828
"syscall"

zh/05.6.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ redis是一个key-value存储系统。和Memcached类似,它支持存储的val
99
目前应用redis最广泛的应该是新浪微博平台,其次还有Facebook收购的图片社交网站instagram。以及其他一些有名的[互联网企业](http://redis.io/topics/whos-using-redis)
1010

1111
Go目前支持redis的驱动有如下
12-
- https://github.com/garyburd/redigo (推荐)
12+
- https://github.com/gomodule/redigo (推荐)
1313
- https://github.com/go-redis/redis
1414
- https://github.com/hoisie/redis
1515
- https://github.com/alphazero/Go-Redis
@@ -27,7 +27,7 @@ import (
2727
"syscall"
2828
"time"
2929

30-
"github.com/garyburd/redigo/redis"
30+
"github.com/gomodule/redigo/redis"
3131
)
3232

3333
var (

0 commit comments

Comments
 (0)