Method: Mongoid::Document#cache_key

Defined in:
lib/mongoid/document.rb

#cache_keyString

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

Examples:

Returns the cache key

document.cache_key

Returns:

  • (String)

    the string with or without updated_at

Since:

  • 2.4.0



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