英文: Parallelisation - Why does sleep pause only once? 问题 为什么只等待第一个goroutine,而其他的则直接执行。我认为这是因为通道c cha...
Golang:如何验证Go程序运行在多少个处理器上
英文: Golang: how to verify number of processors on which a Go program is running 问题 我是新来的Google Go(Go...
多线程程序没有加速
英文: No speedup in multithread program 问题 我在使用Go语言并发性时发现了一些我不太理解的东西。 我写了一个并行矩阵乘法的程序,也就是说,每个任务计算产品矩阵的一...
加速使用Go的问题
英文: Speedup problems with go 问题 我用Go语言编写了一个非常简单的程序来测试并行程序的性能。我编写了一个非常简单的程序,通过除法试验来分解一个大的半素数。由于没有涉及通信...
Google App Engine Go得分计数和保存
英文: Google App Engine Go score counting and saving 问题 我想用Go语言制作一个简单的GAE应用程序,让用户投票并以两种方式存储他们的答案。第一种方式...
在Go中并行计算不重复单词的数量
英文: Parallel distinct word count in Go 问题 Jakob Østergaard提出了这个挑战: 编写一个程序,从标准输入读取文本,并返回(打印)在文本中找到的不同...
为什么Go语句不能并行执行?
英文: Why doesn't the Go statement execute in parallel? 问题 我正在测试这段Go代码在我的VirtualBox上的Ubuntu 11.4上运...
共享内存与消息传递如何处理大型数据结构?
英文: How does shared memory vs message passing handle large data structures? 问题 在研究Go和Erlang对并发的处理方式时...
一个goroutine的最小工作大小
英文: minimum work size of a goroutine 问题 有人知道为了使goroutine有益,大致需要多少最小工作量(假设有空闲核心可用于卸载工作)吗? 英文: Does an...
15