Skip to content

Instantly share code, notes, and snippets.

@DAddYE
Created January 2, 2013 19:02
Show Gist options
  • Save DAddYE/4436936 to your computer and use it in GitHub Desktop.
Save DAddYE/4436936 to your computer and use it in GitHub Desktop.
Performance tips for rails
class ApplicationController < ActionController::Base
around_filter :disable_gc
private
def disable_gc
GC.disable
begin
yield
ensure
GC.enable
GC.start
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment