Hi all, 以前一直觉得如果开发时选择的 Rails 服务器非默认的话(比如 thin)就可以实现并行处理(显然被那句 Maximum connections set to 1024 迷惑了),但是今天做了下试验发现似乎不是这样的 依然是单线程串行执行。由于项目中有些测试涉及到并行 因此希望把服务器启动在 development 模式下可以并行的状态。我尝试过例如于
rails s --threaded
script/server thin start --threaded(for Rails 2.3)
bundle exec thin start --threaded
等几种方法,均失败。 特此请教诸位 谢谢