Sweepers are rails caching constructs that allow changes to models to sweep (clean/remove) cache contents, so keeping the cache entries in sync with data. Sweepers are a combination of observers and controller filters.

learn more… | top users | synonyms

4
votes
2answers
251 views

How does one include a module with cache expirations in sweepers?

We have the following sweeper in a rails application: class AgencyEquipmentTypeSweeper < ActionController::Caching::Sweeper observe AgencyEquipmentType #include ExpireOptions def ...
4
votes
2answers
344 views

Action caching is not expiring correctly, even when I can see it's being called

I've got a sweeper that's supposed to expire a few action caches. Even though the debugger stops immediately before the call to expire_action, it's not actually expiring the action. Any idea what ...
4
votes
7answers
2k views

In Rails, a Sweeper isn't getting called in a Model-only setup

I'm working on a Rails app, where I'm using page caching to store static html output. The caching works fine. I'm having trouble expiring the caches, though. I believe my problem is, in part, because ...
3
votes
1answer
370 views

Rails Caching: Using sweepers for actions which require parameters

I'm trying to use sweepers to handle my page refreshes. For refreshing index actions, etc everything works fine...but I can't seem to sweepers to interpret page parameters. If anyone can tell me ...
2
votes
1answer
1k views

Testing a sweeper with RSpec in Rails

I want to make sure my sweeper is being called as appropriate so I tried adding something like this: it "should clear the cache" do @foo = Foo.new(@create_params) ...
1
vote
0answers
31 views

Rails: Accessing Controller Variables in a Sweeper

So I have some code here I need to modify regarding a Rails Sweeper: class UserTrackingSweeper < ActionController::Caching::Sweeper observe User def after_update(user) return if user.nil? ...
1
vote
1answer
74 views

Rails 3 caching: How do I use a sweeper with Action and Fragment caching to expire the cache?

I'm working on a page that displays a restaurant menu. I have 2 models: FoodMenu has_many :products and Product belongs_to :food_menu. I don't have controllers for either model. Instead, I am using a ...
1
vote
1answer
274 views

Rails3 Cache Sweeper for has_and_belongs_to_many association

I have the following relationships modeled in a Rails3 application: class User < ActiveRecord::Base has_and_belongs_to_many :skills end class SkillsUser < ActiveRecord::Base end class Skill ...
1
vote
2answers
114 views

How can I access named routes in a Rails sweeper?

I have a sweeper that reheats cache by opening urls in forked processes. It's easy enough to hard-code the host for those urls, but I want it to change dynamically, based on environment. I know I can ...
1
vote
1answer
398 views

Can Rails sweepers work across different controllers?

I have action caching working on my Sites index, and set up a SiteSweeper that works fine: # app/controllers/admin/sites_controller.rb class Admin::SitesController < Admin::BaseController ...
1
vote
1answer
1k views

rails - caches_action expire_action

I want to expire a cached action and wondered how to generate the correct reference. #controller caches_action :index, :layout => false #generates this fragment which works fine ...
0
votes
1answer
59 views
+50

How to invoke a rails sweeper in this scenario?

As you can see from code below. I am caching the show action. I also have the following method in the show action View.create_for(@song). I would like to make it so, when View.create_for(@song) is ...
0
votes
1answer
174 views

Rails is not deleting a cache/.html page when the sweeper is called

I'm having some issues with Sweepers and Caching in Rails. The .html file in /cache is being generated on first view. The Sweeper action is being called when needed. However, the sweeper action is ...