class ActiveSupport::Cache::FileStore

def key_file_path(key)

def key_file_path(key)
  ActiveSupport::Deprecation.warn(<<-MESSAGE.strip_heredoc)
    `key_file_path` is deprecated and will be removed from Rails 5.1.
    Please use `normalize_key` which will return a fully resolved key or nothing.
  MESSAGE
  key
end