Sha256: 9ec7625627ecdfe8e74ad9c97dd8452b4ca1ebdcdc93b6e6fd132c6dc59b5c64
Contents?: true
Size: 407 Bytes
Versions: 20
Compression:
Stored size: 407 Bytes
Contents
module Cell module Caching module Notifications def fetch_from_cache_for(key, options) ActiveSupport::Notifications.instrument('read_fragment.cells', key: key) do cache_store.fetch(key, options) do ActiveSupport::Notifications.instrument('write_fragment.cells', key: key) do yield end end end end end end end
Version data entries
20 entries across 20 versions & 2 rubygems