File: concat_vs_insert.rb

package info (click to toggle)
ruby-excon 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,240 kB
  • sloc: ruby: 7,970; makefile: 5
file content (21 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
require 'tach'

Tach.meter(1_000_000) do
  tach('concat') do
    path = 'path'
    path = '/' << path
  end
  tach('insert') do
    path = 'path'
    path.insert(0, '/')
  end
end

# +--------+----------+
# | tach   | total    |
# +--------+----------+
# | insert | 0.974036 |
# +--------+----------+
# | concat | 0.998904 |
# +--------+----------+