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 26 27 28 29 30 31 32 33
|
require 'bundler'
require 'benchmark'
require 'fast_cache'
Bundler.require
# FastCache
fast_cache = FastCache::Cache.new(1_000, 5 * 60)
# LruRedux
redux_ttl = LruRedux::TTL::Cache.new(1_000, 5 * 60)
redux_ttl_thread_safe = LruRedux::TTL::ThreadSafeCache.new(1_000, 5 * 60)
redux_ttl_disabled = LruRedux::TTL::Cache.new(1_000, :none)
puts
puts "** TTL Benchmarks **"
Benchmark.bmbm do |bm|
bm.report 'FastCache' do
1_000_000.times { fast_cache.fetch(rand(2_000)) { :value } }
end
bm.report 'LruRedux::TTL::Cache' do
1_000_000.times { redux_ttl.getset(rand(2_000)) { :value } }
end
bm.report 'LruRedux::TTL::ThreadSafeCache' do
1_000_000.times { redux_ttl_thread_safe.getset(rand(2_000)) { :value } }
end
bm.report 'LruRedux::TTL::Cache (TTL disabled)' do
1_000_000.times { redux_ttl_disabled.getset(rand(2_000)) { :value } }
end
end
|