I've pretty much tried everything, but it seems impossible to use expire_fragment from models? I know you're not supposed to and it's non-MVC, but surely there much be some way to do it.
I created a module in lib/cache_helper.rb with all my expire helpers, within each are just a bunch of expire_fragment calls. I have all my cache sweepers setup under /app/sweepers and have an "include CacheHelper" in my application controller so expiring cache within the app when called via controllers works fine.
Then things is I have some external daemons and especially some recurring cron tasks which call a rake task that calls a certain method. This method does some processing and inputs entries into the model, after which I need to expire cache.
What's the best way to do this as I can't specify cache sweeper within the model. Straight up observers seem to be the best solution but then it complains about expire_fragment being undefined etc etc, I've even tried including the ActionController caching classes into the observer but that didn't work. I'd love some ideas of how to create a solution for this. Thanks.
Will it not be easier and clean just to pass the current controller as an argument to the model method call? Like following:
You can access all public methods and properties of the controller from within model. As long as you do not modify the state of the controller, it should be fine.
This is quite easy to do. You can implement Orion's suggestion, but you can also implement the broader technique illustrated below, which gives you access to the current controller from any model and for whichever purpose you decided to break MVC separation for (e.g. messing with the fragment cache, accessing
current_user
, generating paths/URLs, etc.)In order to gain access to the current request's controller (if any) from any model, add the following to
environment.rb
or, much preferably, to a new plugin (e.g. createvendor/plugins/controller_from_model/init.rb
containing the code below):Then, in
app/controllers/application.rb
,Then, from any model,
Anyhow, in your particular case you might want to inject code into your various
ActiveRecord::Base
descendants when the relevant controller classes load, so that the actual controller-aware code still resides inapp/controllers/*.rb
, but it is not mandatory to do so in order to get something functional (though ugly and hard to maintain.)Have fun!
In one of my scripts I use the following hack:
Then, once the ActiveRecord callbacks are called, sweepers are able to call expire_fragment.
Disclaimer: My rails is a bit rusty, but this or something like it should work
This might not work for what you're doing, but you may be able to define a custom call back on your model:
You can then use a sweeper like you would normally:
Let me know if this is useful!
Why not have your external rake tasks call the expiry method on the controller. Then you're still being MVC compliant, you aren't building in a dependence on some scoping hack, etc.
For that matter, why don't you just put all the daemon / external functionality on a controller and have rake / cron just call that. It would be loads easier to maintain.
-- MarkusQ