diff options
author | Xavier Noria <fxn@hashref.com> | 2014-06-07 02:17:25 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2014-06-07 02:17:25 -0700 |
commit | ad539dcb30742c019e008ccc571bfeff77e8b24c (patch) | |
tree | ff2420da7f8135edffc6b08855becc9fbb0b5be5 /guides/source/caching_with_rails.md | |
parent | a6c8cde83526e4ec5b1212b5e6d1e512ebf7c0ec (diff) | |
parent | b6760d8f14af6b00250395f2c830b89e43621860 (diff) | |
download | rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.tar.gz rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.tar.bz2 rails-ad539dcb30742c019e008ccc571bfeff77e8b24c.zip |
Merge pull request #15555 from akshay-vishnoi/doc_changes
Fix capitalization
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r-- | guides/source/caching_with_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index c652aa6a80..3e39ecdad2 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -28,7 +28,7 @@ config.action_controller.perform_caching = true ### Page Caching -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. +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. |