mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Guides mistake about page caching.
DHH's key-based cache expiration isn't alternative to page caching. It's true about action caching but not page caching. I propose to remove this line as confusing, page caching is still best if applicable. [ci skip]
This commit is contained in:
parent
85c49f5a64
commit
8526921d29
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ config.action_controller.perform_caching = true
|
|||
|
||||
Page caching is a Rails mechanism which allows the request for a generated page to be fulfilled by the webserver (i.e. Apache or NGINX), without ever having to go through the Rails stack at all. Obviously, this is super-fast. Unfortunately, it can't be applied to every situation (such as pages that need authentication) and since the webserver is literally just serving a file from the filesystem, cache expiration is an issue that needs to be dealt with.
|
||||
|
||||
INFO: Page Caching has been removed from Rails 4. See the [actionpack-page_caching gem](https://github.com/rails/actionpack-page_caching). See [DHH's key-based cache expiration overview](http://signalvnoise.com/posts/3113-how-key-based-cache-expiration-works) for the newly-preferred method.
|
||||
INFO: Page Caching has been removed from Rails 4. See the [actionpack-page_caching gem](https://github.com/rails/actionpack-page_caching).
|
||||
|
||||
### Action Caching
|
||||
|
||||
|
|
Loading…
Reference in a new issue