Ruby on rails 在Windows上启动精简群集

Ruby on rails 在Windows上启动精简群集,ruby-on-rails,ruby,apache,bundler,thin,Ruby On Rails,Ruby,Apache,Bundler,Thin,我的机器上有一个ruby应用程序,我正试图用批处理脚本部署它。我已经把服务器上的一切都处理好了。这就是我正在使用的: cd to/path/of/app thin start -p 3001 这很有效 cd to/path/of/app thin start --servers 3 根据,不起作用。我在'parse!'中得到一个错误lib/thin/runner.rb:142:无效选项:-服务器 你知道为什么这样不行吗 在lib/thin/runner.rb的第88行,它说Windows不

我的机器上有一个ruby应用程序,我正试图用批处理脚本部署它。我已经把服务器上的一切都处理好了。这就是我正在使用的:

cd to/path/of/app
thin start -p 3001
这很有效

cd to/path/of/app
thin start --servers 3 
根据,不起作用。我在'parse!'中得到一个错误lib/thin/runner.rb:142:无效选项:-服务器


你知道为什么这样不行吗

在lib/thin/runner.rb的第88行,它说Windows不支持后台监控:

啊,我应该看看那里。糟糕的交易。知道如何将多个实例作为批处理脚本的一部分吗?