Skip to content

Instantly share code, notes, and snippets.

@rkh
Created May 29, 2010 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rkh/418380 to your computer and use it in GitHub Desktop.
Save rkh/418380 to your computer and use it in GitHub Desktop.
class SomeMiddleware
def initialize(app) @app = app end
def call(env)
background(env) { ... }
@app.call env
end
def background(env, &block)
if env['rack.run_once'] then yield
elsif defined? EventMachine then EventMachine.next_tick(&block)
elsif env['rack.multithread'] or not supports_fork? then Thread.new(&block)
else fork(&block)
end
end
def supports_fork?
return @@supports_fork unless @@supports_fork.nil?
@@supports_fork = begin
fork { }
true
rescue NotImplementedError
false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment