instance method
cache_message
Ruby on Rails 7.0.10
Since v5.2.8.1 Last seen in v8.0.4 PrivateSignature
cache_message(payload)
No documentation comment.
Parameters
-
payloadreq
Source
# File actionview/lib/action_view/log_subscriber.rb, line 83
def cache_message(payload) # :doc:
case payload[:cache_hit]
when :hit
"[cache hit]"
when :miss
"[cache miss]"
end
end
Defined in actionview/lib/action_view/log_subscriber.rb line 83
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::LogSubscriber