遅いサードパーティのサービスを使用することの苦痛を和らげるために、私は「非同期レール」を実験しています。
Gemfile
gem 'eventmachine'
gem 'rack-fiber_pool', :require => 'rack/fiber_pool'
gem 'em-synchrony', :require => ['em-synchrony',
'em-synchrony/em-http',
'em-synchrony/activerecord']
config.ru
require ::File.expand_path('../config/environment', __FILE__)
use Rack::FiberPool, :size => 6
run MyApp::Application
HerokuのCedarスタックで使用できるRubyファイバーの数を知っている人はいますか?または、そのようなことを決定する方法は?