instance method
cache_key
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v3.1.12Signature
cache_key()
Returns a cache key that can be used to identify this record.
Examples
Product.new.cache_key # => "products/new" Product.find(5).cache_key # => "products/5" (updated_at not available) Person.find(5).cache_key # => "people/5-20071224150000" (updated_at available)
Source
# File activerecord/lib/active_record/base.rb, line 2338
def cache_key
case
when new_record?
"#{self.class.model_name.cache_key}/new"
when timestamp = self[:updated_at]
"#{self.class.model_name.cache_key}/#{id}-#{timestamp.to_s(:number)}"
else
"#{self.class.model_name.cache_key}/#{id}"
end
end
Defined in activerecord/lib/active_record/base.rb line 2338
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base