last_update = Page.order(updated_at: :desc).first.updated_at.to_i
if Rails.cache.fetch("#{last_update}/all_pages_cached").present?
Rails.cache.fetch("#{last_update}/all_pages_cached")
else
Rails.cache.fetch("#{last_update}/all_pages_cached") do
hash # некий хэш
end
end
last_update = Page.order(updated_at: :desc).first.updated_at.to_i
if Rails.cache.fetch("#{last_update}/all_pages_cached").present?
current_object # вот так
else
Rails.cache.fetch("#{last_update}/all_pages_cached") do
hash # некий хэш
end
end
Rails.cache.fetch("#{last_update}/all_pages_cached") do
hash
end