Created
October 9, 2013 03:07
-
-
Save aquajach/6895590 to your computer and use it in GitHub Desktop.
Deferring Garbage Collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_helper.rb | |
config.before(:all) do | |
DeferredGarbageCollection.start | |
end | |
config.after(:all) do | |
DeferredGarbageCollection.reconsider | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment