class LHC::Caching

def cache_options(input = {})

the cache
extracts the options that should be forwarded to
def cache_options(input = {})
  input.each_with_object({}) do |(key, value), result|
    result[key] = value if key.in? FORWARDED_OPTIONS
    result
  end
end