【发布时间】:2014-01-13 08:17:27
【问题描述】:
我们在 Python 中存在并发问题。这些 WSGI 服务器并不能很好地工作。我环顾四周,没有得到像 Golang 编写的带有 goroutines 的 WSGI 服务器。
有什么原因吗?
【问题讨论】:
-
WSGI 是 Python Web 服务器的规范。
-
就是不能用 Golang 写一个 Python Web 服务器?
-
什么不适合你?你是在问为什么 Go 服务器比 Python 运行得更好?
-
Go 的 goroutine 比 greenlet 快得多,所以想知道为什么不使用 goroutine 实现一个 WSGI 服务器...
-
为什么要为 Python 应用程序使用 Go 服务器?如果你对 Python 服务器不满意,为什么不把它变成 C 呢?