Skip to content

Instantly share code, notes, and snippets.

@anildigital
Forked from lifo/scaling.rb
Created December 20, 2008 05:03
Show Gist options
  • Save anildigital/38233 to your computer and use it in GitHub Desktop.
Save anildigital/38233 to your computer and use it in GitHub Desktop.
# Allow the metal piece to run in isolation
require(File.dirname(__FILE__) + "/../../config/environment") unless defined?(Rails)
class Scaling
def self.call(env)
if env["PATH_INFO"] =~ /^\/scaling/
[200, {"Content-Type" => "text/html"}, ["Hello, World!"]]
else
[404, {"Content-Type" => "text/html"}, ["Not Found"]]
end
end
end
__END__
# RAILS_ENV=production script/server thin
[lifo@null ~]$ ab -c 20 -n 1000 http://0.0.0.0:3000/scaling
3000 r/s
#
# No database configured
# config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
#
class WelcomeController < ApplicationController
def index
render :text => 'Hello Rails'
end
end
__END__
# RAILS_ENV=production script/server thin
[lifo@null ~]$ ab -c 20 -n 1000 http://0.0.0.0:3000/
800 r/s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment