Thu
Jan
31
Segregated page cache storage
Page-caching is one of the highest leverage features in Rails. It doesn’t take much to set up, and the payoff is huge. When building Teldra I knew from the start that page caching would be part of my production deployment, as it should be for any site with pages where content changes infrequently relative to number of views.
The only thing I find annoying about using the page caching feature is how the cached pages are stored in the RAILS_ROOT/public directory, right alongside all the app’s…