Ruby on Rails
Wednesday, October 31, 2012
I code this on my controller:
caches_page :index
cache_sweeper :site_sweeper
https://github.com/leandromoreira/playground.activeadmin/blob/master/app/controllers/page_controller.rband this on my sweeper
class SiteSweeper < ActionController::Caching::Sweeper observe Article, Category
def after_create(model) expire_cache_for(model) end
def after_update(model) expire_cache_for(model) end
def after_destroy(model) expire_cache_for(model) end
private def expire_cache_for(model) expire_page controller: 'page', action: 'index' endend
https://github.com/leandromoreira/playground.activeadmin/blob/master/app/sweepers/site_sweeper.rb
But I change my Article and the change do not expire the page, am I doing something wrong?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/7wzAqhXPLkYJ.
For more options, visit https://groups.google.com/groups/opt_out.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment