method
page_cache_path
Register or
log in
to add new notes.
dvdplm -
November 10, 2009
2 thanks
Where are the cached files?
If you configure your app to use the file_store like so:
config.cache_store = :file_store, '/tmp'
and expect you cached page pages to end up in /tmp, think again…
Rails – rather obscurely imho – will store page cached pages in the public/ folder of your app, making it easy for your webserver to find them.
The ‘page_cache_directory’ used in the ‘page_cache_path’ method above is a class var that defaults to the public/ dir.