instance method
cache_message
Ruby on Rails 8.0.4
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 121
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 121
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::LogSubscriber