module LuckyCache::HtmlHelpers
Defined in:
lucky_cache/html_helpers.crInstance Method Summary
-
#cache(key, *, expires_in : Time::Span | Nil, &)
Use this in your Lucky Page class.
Instance Method Detail
def cache(key, *, expires_in : Time::Span | Nil, &)
#
Use this in your Lucky Page class.
cache("some_key", expires_in: 5.minutes) do
div do
text "Data"
end
end