class LHC::Caching

def options(request_options)

will map deprecated options to the new format
returns the request_options
def options(request_options)
  options = request_options[:cache] == true ? {} : request_options[:cache].dup
  map_deprecated_options!(request_options, options)
  options
end