class method
self.expand_cache_key
Ruby on Rails 3.2.22.5
Since v2.2.3Signature
self.expand_cache_key(key, namespace = nil)
No documentation comment.
Parameters
-
keyreq -
namespaceopt = nil
Source
# File activesupport/lib/active_support/cache.rb, line 77
def expand_cache_key(key, namespace = nil)
expanded_cache_key = namespace ? "#{namespace}/" : ""
if prefix = ENV["RAILS_CACHE_ID"] || ENV["RAILS_APP_VERSION"]
expanded_cache_key << "#{prefix}/"
end
expanded_cache_key << retrieve_cache_key(key)
expanded_cache_key
end
Defined in activesupport/lib/active_support/cache.rb line 77
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache