Update zh/05.5.md and Add redigo en/05.6.md

This commit is contained in:
vCaesar
2016-12-18 17:55:11 +08:00
parent 3ac667de1c
commit 62f33a8185
2 changed files with 7 additions and 7 deletions

View File

@@ -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 and zset(ordered set) value types.
There are some Go database drivers for redis:
- [https://github.com/garyburd/redigo](https://github.com/garyburd/redigo)
- [https://github.com/alphazero/Go-Redis](https://github.com/alphazero/Go-Redis)
- [http://code.google.com/p/tideland-rdc/](http://code.google.com/p/tideland-rdc/)
- [https://github.com/simonz05/godis](https://github.com/simonz05/godis)

View File

@@ -4,17 +4,17 @@ beedb/beego orm是我开发的一个Go进行ORM操作的库它采用了Go sty
beedb/beego orm是支持database/sql标准接口的ORM库所以理论上来说只要数据库驱动支持database/sql接口就可以无缝的接入beedb。目前我测试过的驱动包括下面几个
Mysql: [github/go-mysql-driver/mysql](github.com/go-sql-driver/mysql)
Mysql: [github/go-mysql-driver/mysql](github.com/go-sql-driver/mysql)
PostgreSQL: [github.com/bmizerany/pq](github.com/lib/pq)
PostgreSQL: [github.com/bmizerany/pq](github.com/lib/pq)
SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3)
SQLite: [github.com/mattn/go-sqlite3](github.com/mattn/go-sqlite3)
Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv)
Mysql: [github.com/ziutek/mymysql/godrv](github.com/ziutek/mymysql/godrv)
MS ADODB: [github.com/mattn/go-adodb](github.com/mattn/go-adodb)
MS ADODB: [github.com/mattn/go-adodb](github.com/mattn/go-adodb)
ODBC: [bitbucket.org/miquella/mgodbc](bitbucket.org/miquella/mgodbc)
ODBC: [bitbucket.org/miquella/mgodbc](bitbucket.org/miquella/mgodbc)
## 安装