Skip to content

Instantly share code, notes, and snippets.

@burke
Created December 28, 2009 03:59
Show Gist options
  • Save burke/264521 to your computer and use it in GitHub Desktop.
Save burke/264521 to your computer and use it in GitHub Desktop.
1.8.7:
>> t=Time.now;1_000_000.times{("asdf".html_safe+"zxcv").html_safe?};puts Time.now-t
5.673326
=> nil
>> require 'output_safety'
=> true
>> t=Time.now;1_000_000.times{("asdf".html_safe+"zxcv").html_safe?};puts Time.now-t
1.715778
=> nil
1.9.1:
>> t=Time.now;1_000_000.times{("asdf".html_safe+"zxcv").html_safe?};puts Time.now-t
4.320785
=> nil
>> require 'output_safety'
=> true
>> t=Time.now;1_000_000.times{("asdf".html_safe+"zxcv").html_safe?};puts Time.now-t
1.66443
=> nil
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment