英文:
Application Domain of Go Language
问题
有人能告诉我"go"语言的应用领域吗?
有哪些应用是使用"go"语言构建的?
它最适合哪种类型的应用程序?
英文:
Can anybody tell me application domain of "go" language ?
Which applications were built using "Go" language ?
For what kind of applications it is best suited for ?
答案1
得分: 8
从FAQ中:
> 项目的目的是什么?
>
> [...]
> 通过其设计,Go提出了一种在多核机器上构建系统软件的方法。
>
> Google是否在内部使用Go?
>
> Go项目的构想是为了更容易编写Google在内部使用的服务器和其他软件,但实现还不够成熟,尚不能用于大规模生产。在我们继续开发的同时,我们还在将该语言作为候选服务器环境进行实验。它正在逐渐发展。例如,http://golang.org后面的服务器是一个Go程序;实际上,它只是以生产配置运行的godoc文档服务器。
因此,该项目的目标领域是当前多核机器的系统和服务器开发。
英文:
From the FAQ:
> What is the purpose of the project?
>
> [...]
> By its design, Go proposes an approach for the construction of system software on multicore machines.
>
> Is Google using Go internally?
>
>The Go project was conceived to make it easier to write the kind of servers and other software Google uses internally, but the implementation isn't quite mature enough yet for large-scale production use. While we continue development we are also doing experiments with the language as a candidate server environment. It's getting there. For instance, the server behind http://golang.org is a Go program; in fact it's just the godoc document server running in a production configuration.
So the intended domain is systems and server development for current multicore machines.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论