Go 语言在谷歌:以软件工程为目的的语言设计

文章译者:fbm, Khiyuan, ljb_iss, darkxinyu, jimmyjmh, nesteaa, asdfsx 出处:oschina 原文链接:http://www.oschina.net/translate/go-at-google-language-design-in-the-service-of-software-engineering?lang=chs&# Go 语言在谷歌:以软件工程为目的的语言设计 英文原文:Go at Google: Language Design...阅读全文

阅读:3177 评论:0

GO语言的开源库

Indexes and search engines These sites provide indexes and search engines for Go packages: godoc.org gowalker gosearch Sourcegraph Contributing To edit this page you must be a contributor to the go-wiki project. To get contributor access, send mail t...阅读全文

2015-02-16 09:47 chu888chu888
阅读:22551 评论:1

Goroutine + Channel 实践

背景 在最近开发的项目中,后端需要编写许多提供HTTP接口的API,另外技术选型相对宽松,因此选择Golang + Beego框架进行开发。之所以选择Golang,主要是考虑到开发的模块,都需要接受瞬时大并发、请求需要经历多个步骤、处理时间较长、无法同步立即返回结果的场景,Golang的goroutine以及channel所提供的语言层级的特性,正好可以满足这方面的需要。 goroutine不同于thread,threads是操作系统中的对于一个独立运行实例的描述,不同操作系统,对于thread...阅读全文

阅读:38482 评论:5