class RailsBand::ActiveSupport::Event::CacheReadMulti

A wrapper for the event that is passed to ‘cache_read_multi.active_support`.

def hits

def hits
  @hits ||= @event.payload[:hits] || []
end

def key

def key
  @key ||= @event.payload.fetch(:key)
end

def super_operation

def super_operation
  return @super_operation if defined? @super_operation
  @super_operation = @event.payload[:super_operation]
end