Method: Mongoid::Document#cache_key
- Defined in:
- lib/mongoid/document.rb
#cache_key ⇒ String
Print out the cache key. This will append different values on the plural model name.
If new_record? - will append /new If not - will append /id-updated_at.to_s(:number) Without updated_at - will append /id
This is usually called insode a cache() block
223 224 225 226 227 |
# File 'lib/mongoid/document.rb', line 223 def cache_key return "#{model_key}/new" if new_record? return "#{model_key}/#{id}-#{updated_at.utc.to_s(:number)}" if do_or_do_not(:updated_at) "#{model_key}/#{id}" end |