Class: DeferredGarbageCollection

Inherits:
Object
  • Object
show all
Defined in:
lib/gaku/testing/deferred_garbage_collection.rb

Constant Summary collapse

DEFERRED_GC_THRESHOLD =
(ENV['DEFER_GC'] || 10.0).to_f

Class Method Summary collapse

Class Method Details

.reconsiderObject



11
12
13
14
15
16
17
18
# File 'lib/gaku/testing/deferred_garbage_collection.rb', line 11

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

.startObject



7
8
9
# File 'lib/gaku/testing/deferred_garbage_collection.rb', line 7

def self.start
  GC.disable if DEFERRED_GC_THRESHOLD > 0
end