Module: ActiveRecord::CollectionCacheKey
- Included in:
- Base
- Defined in:
- lib/active_record/collection_cache_key.rb
Instance Method Summary collapse
Instance Method Details
#collection_cache_key(collection = all, timestamp_column = :updated_at) ⇒ Object
:nodoc:
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/active_record/collection_cache_key.rb', line 4 def collection_cache_key(collection = all, = :updated_at) # :nodoc: query_signature = Digest::MD5.hexdigest(collection.to_sql) key = "#{collection.model_name.cache_key}/query-#{query_signature}" if collection.loaded? size = collection.size if size > 0 = collection.max_by(&).public_send() end else column_type = type_for_attribute(.to_s) column = "#{connection.quote_table_name(collection.table_name)}.#{connection.quote_column_name()}" query = collection .unscope(:select) .select("COUNT(*) AS #{connection.quote_column_name("size")}", "MAX(#{column}) AS timestamp") .unscope(:order) result = connection.select_one(query) if result.blank? size = 0 = nil else size = result["size"] = column_type.deserialize(result["timestamp"]) end end if "#{key}-#{size}-#{.utc.to_s()}" else "#{key}-#{size}" end end |