Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

garyburd/redigo -> gomodule/redigo #1183

Merged
merged 1 commit into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions en/05.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions zh/05.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ redis是一个key-value存储系统。和Memcached类似,它支持存储的val
目前应用redis最广泛的应该是新浪微博平台,其次还有Facebook收购的图片社交网站instagram。以及其他一些有名的[互联网企业](http://redis.io/topics/whos-using-redis)

Go目前支持redis的驱动有如下
- https://github.com/garyburd/redigo (推荐)
- https://github.com/gomodule/redigo (推荐)
- https://github.com/go-redis/redis
- https://github.com/hoisie/redis
- https://github.com/alphazero/Go-Redis
Expand All @@ -27,7 +27,7 @@ import (
"syscall"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

var (
Expand Down