Files
the-way-to-go_ZH_CN/eBook/09.10.md
Neal Caffery 244578ef15 modify link to markdown format (#440)
* modify link to markdown format

* modify left parenthesis

* add right parenthesis

* modify code area

* add a space
2018-03-05 03:53:58 -05:00

869 B

9.10 Go 的外部包和项目

现在我们知道如何使用 Go 以及它的标准库了,但是 Go 的生态要比这大的多。当着手自己的 Go 项目时,最好先查找下是否有些存在的第三方的包或者项目不能使用。大多数可以通过 go install 来进行安装。

Go Walker 支持根据包名在海量数据中查询。

目前已经有许多非常好的外部库,如:

  • MySQL(GoMySQL), PostgreSQL(go-pgsql), MongoDB (mgo, gomongo), CouchDB (couch-go), ODBC (godbcl), Redis (redis.go) and SQLite3 (gosqlite) database drivers
  • SDL bindings
  • Google's Protocal Buffers(goprotobuf)
  • XML-RPC(go-xmlrpc)
  • Twitter(twitterstream)
  • OAuth libraries(GoAuth)

链接