Today we're releasing a new gem that makes it easy to add caching to any Ruby code. It's called cacheable! The cacheable gem is an aspect-oriented, unobtrusive approach to caching. It turns this example code (taken from the Rails caching documentation): class Product < ApplicationRecord def competing_price Rails.cache.fetch("#{cache_key}/competing_price") do Competitor::API.find_price(id) end end end Into this: ... Continue reading Cacheable: a simple gem for caching methods in Ruby