Sha256: d3f1701c0b4dd957517c72527eee671d6b995e1938fc8a41b83f40c31778ce2f

Contents?: true

Size: 1.34 KB

Versions: 109

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

109 entries across 106 versions & 12 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/mini_mime-1.1.5/bench/bench.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/mini_mime-1.1.5/bench/bench.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/mini_mime-1.1.5/bench/bench.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.6 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.5 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.4 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.3 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.2 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.1 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
study_line-0.2.0 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/mini_mime-1.1.5/bench/bench.rb