Skip to content

Instantly share code, notes, and snippets.

@cloud8421
Created April 11, 2013 14:53
Show Gist options
  • Select an option

  • Save cloud8421/5364040 to your computer and use it in GitHub Desktop.

Select an option

Save cloud8421/5364040 to your computer and use it in GitHub Desktop.
Enable deferred garbage collection.
# spec/support/deferred_garbage_collection.rb
class DeferredGarbageCollection
DEFERRED_GC_THRESHOLD = (ENV['DEFER_GC'] || 15.0).to_f
@@last_gc_run = Time.now
def self.start
GC.disable if DEFERRED_GC_THRESHOLD > 0
end
def self.reconsider
if DEFERRED_GC_THRESHOLD > 0 && Time.now - @@last_gc_run >= DEFERRED_GC_THRESHOLD
GC.enable
GC.start
GC.disable
@@last_gc_run = Time.now
end
end
end
# spec/spec_helper.rb
RSpec.configure do |config|
config.before(:all) { DeferredGarbageCollection.start }
config.after(:all) { DeferredGarbageCollection.reconsider }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment