I read the official manual. He says there is page cache
, action cache
and fragment cache
, but they are not what I want.
I just like to cache the object, not the whole page or fragment of the view, like this pseudocode:
def show cache @ads, :expires_in => 1.hour do @ads = Advertisement.all do end
Is it possible? with memcache
or redis
?
source share