File: bm_select_incremental.rb

package info (click to toggle)
ruby-public-suffix 3.0.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 284 kB
  • sloc: ruby: 1,431; makefile: 22
file content (25 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'benchmark'
require_relative "../../lib/public_suffix"

JP   = "www.yokoshibahikari.chiba.jp"

TIMES = (ARGV.first || 50_000).to_i

# Initialize
class PublicSuffix::List
  public :select
end
PublicSuffixList = PublicSuffix::List.default
PublicSuffixList.select("example.jp")

Benchmark.bmbm(25) do |x|
  x.report("select jp") do
    TIMES.times { PublicSuffixList.select("jp") }
  end
  x.report("select example.jp") do
    TIMES.times { PublicSuffixList.select("example.jp") }
  end
  x.report("select www.example.jp") do
    TIMES.times { PublicSuffixList.select("www.example.jp") }
  end
end