file_path_key(path)
Translate a file path into a key.
# File activesupport/lib/active_support/cache/file_store.rb, line 157 def file_path_key(path) fname = path[cache_path.size, path.size].split(File::SEPARATOR, 4).last Rack::Utils.unescape(fname) end