vote up 1 vote down star

I need to cache a single page. I've used ActionController's caches_page for this. But now, I'd like to expire AND regenerate it once in every 10 minutes. What are my options?

later: I'd like to not use any external tools for this, like cron. The important point is interval-based expiry of the cache.

flag

2 Answers

vote up 1 vote down check

You can also use this if you want to have fragments timeout.

link|flag
vote up 1 vote down

AFAIK rails page caching compares the cache time on request and regenerates if necessary. If you need to forcibly flush that cache check out Sweepers. http://www.railsenvy.com/2007/2/28/rails-caching-tutorial#sweepers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.