Sha256: b6e0748d2860d48bdf6807e43136356e778aee08ae13b23c51ed1c24226a5f7a

Contents?: true

Size: 1.99 KB

Versions: 33

Compression:

Stored size: 1.99 KB

Contents

# encoding: binary
#  Phusion Passenger - https://www.phusionpassenger.com/
#  Copyright (c) 2012-2013 Phusion
#
#  "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
#
#  Permission is hereby granted, free of charge, to any person obtaining a copy
#  of this software and associated documentation files (the "Software"), to deal
#  in the Software without restriction, including without limitation the rights
#  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#  copies of the Software, and to permit persons to whom the Software is
#  furnished to do so, subject to the following conditions:
#
#  The above copyright notice and this permission notice shall be included in
#  all copies or substantial portions of the Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
#  THE SOFTWARE.

require 'thread'

module PhusionPassenger
module Rack

class OutOfBandGc
  def initialize(app, frequency, logger = nil)
    @app = app
    @frequency = frequency
    @request_count = 0
    @mutex = Mutex.new
    
    ::PhusionPassenger.on_event(:oob_work) do
      t0 = Time.now
      disabled = GC.enable
      GC.start
      GC.disable if disabled
      logger.info "Out Of Band GC finished in #{Time.now - t0} sec" if logger
    end
  end

  def call(env)
    status, headers, body = @app.call(env)

    @mutex.synchronize do
      @request_count += 1
      if @request_count == @frequency
        @request_count = 0
        headers['X-Passenger-Request-OOB-Work'] = 'true'
      end
    end
    
    [status, headers, body]
  end
end

end # module Rack
end # module PhusionPassenger

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
passenger-4.0.37 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.36 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.35 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.34 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.33 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.32 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.31 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.30 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.29 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.28 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.27 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.26 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.25 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.24 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.23 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.21 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.20 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.19 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.18 lib/phusion_passenger/rack/out_of_band_gc.rb
passenger-4.0.17 lib/phusion_passenger/rack/out_of_band_gc.rb