module

LuckyCache::HtmlHelpers

Instance methods

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
Source