Sha256: d3f1701c0b4dd957517c72527eee671d6b995e1938fc8a41b83f40c31778ce2f

Contents?: true

Size: 1.34 KB

Versions: 112

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true
require 'memory_profiler'
require 'benchmark/ips'

$: << File.expand_path('../../lib', __FILE__)

puts
puts "Memory stats for requiring mime/types/columnar"
result = MemoryProfiler.report do
  require 'mime/types/columnar'
end

puts "Total allocated: #{result.total_allocated_memsize} bytes (#{result.total_allocated} objects)"
puts "Total retained:  #{result.total_retained_memsize} bytes (#{result.total_retained} objects)"

puts
puts "Memory stats for requiring mini_mime"
result = MemoryProfiler.report do
  require 'mini_mime'
end

puts "Total allocated: #{result.total_allocated_memsize} bytes (#{result.total_allocated} objects)"
puts "Total retained:  #{result.total_retained_memsize} bytes (#{result.total_retained} objects)"

Benchmark.ips do |bm|
  bm.report 'cached content_type lookup MiniMime' do
    MiniMime.lookup_by_filename("a.txt").content_type
  end

  bm.report 'content_type lookup MIME::Types' do
    MIME::Types.type_for("a.txt")[0].content_type
  end
end

module MiniMime
  class Db
    class RandomAccessDb
      alias_method :lookup, :lookup_uncached
    end
  end
end

Benchmark.ips do |bm|
  bm.report 'uncached content_type lookup MiniMime' do
    MiniMime.lookup_by_filename("a.txt").content_type
  end

  bm.report 'content_type lookup MIME::Types' do
    MIME::Types.type_for("a.txt")[0].content_type
  end
end

Version data entries

112 entries across 108 versions & 14 rubygems

Version Path
harbr-0.1.45 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.44 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.43 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.42 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.41 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.39 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.38 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.1.37 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/mini_mime-1.1.2/bench/bench.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
mini_mime-1.1.5 bench/bench.rb
mini_mime-1.1.4 bench/bench.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/mini_mime-1.1.2/bench/bench.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/mini_mime-1.1.2/bench/bench.rb
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/mini_mime-1.1.2/bench/bench.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/mini_mime-1.1.2/bench/bench.rb
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/mini_mime-1.1.2/bench/bench.rb
tdiary-5.2.1 vendor/bundle/ruby/3.1.0/gems/mini_mime-1.1.2/bench/bench.rb
tdiary-5.2.0 vendor/bundle/ruby/2.7.0/gems/mini_mime-1.1.0/bench/bench.rb