Skip to content

Instantly share code, notes, and snippets.

@cheeyeo
Created January 21, 2011 18:15
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cheeyeo/790118 to your computer and use it in GitHub Desktop.
Save cheeyeo/790118 to your computer and use it in GitHub Desktop.
Optimizing the garbage collector in Rspec
# delay the GC - usage as below
# Spec::Runner.configure do |config|
.....
# config.before(:each) do
# begin_gc_deferment
# end
# config.after(:each) do
# reconsider_gc_deferment
# end
#end
DEFERRED_GC_THRESHOLD = (ENV['DEFER_GC'] || 1.0).to_f
@@last_gc_run = Time.now
def begin_gc_deferment
GC.disable if DEFERRED_GC_THRESHOLD > 0
end
def reconsider_gc_deferment
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
@cheeyeo
Copy link
Author

cheeyeo commented Jan 21, 2011

Interesting subject to bring up. Will do some research of my own to see if something similar can be achieved for Cucumber.

@cheeyeo
Copy link
Author

cheeyeo commented Jan 23, 2011

Try using either Hydra or parallel_specs to run your cucumber tests to speed it up. Also worth checking out is refactoring some of your cucumber tests code to avoid creating additional objects such as logged in users for instance. From what I understand of how cucumber works, it does full stack testing so the spec_helper methods above is no good. You would need something else like parallel_specs to run your steps in multiple processes to make any difference.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment