Ruby2.1+でのunicornのGCチューニング
unicornのGCでお世話になっているunicorn/oob_gc
だが、https://github.com/defunkt/unicorn/blob/master/lib/unicorn/oob_gc.rb を見てみると
Strongly consider https://github.com/tmm1/gctools if using Ruby 2.1+ It is built on new APIs in Ruby 2.1, so it is more intelligent than this historical implementation.
Ruby2.1+の場合は https://github.com/tmm1/gctools を使ってね、とのこと。
作者の記事: http://tmm1.net/ruby21-oobgc/
日本語訳: http://www.sawanoboly.net/contribution/2014/3/13/ruby-21-out-of-band-gc
READMEによるとruby2.1で提供されているapiとイベントを使ってGCの挙動を変更するらしい。したがってunicorn/oob_gc
とセットでやっていたGC.disable
はいらなくなる。
インストールは
gem install gctools
bundlerを使う場合はGemfileに
gem 'gctools'
のあとbundle install
unicornで使う場合はconfig.ru
に以下を追記。
require 'gctools/oobgc'
if defined?(Unicorn::HttpRequest)
use GC::OOB::UnicornMiddleware
end
Author And Source
この問題について(Ruby2.1+でのunicornのGCチューニング), 我々は、より多くの情報をここで見つけました https://qiita.com/jemiam/items/5c6e4595f3565f3c5562著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .