diff options
author | claudiob <claudiob@gmail.com> | 2015-07-29 17:17:29 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-08-03 12:08:36 +0200 |
commit | 39e0d811b7a99112414c924a52ef196e5f22e6b9 (patch) | |
tree | 37861772de3a200cd20e27ce6802217128e38e72 /guides/source | |
parent | f6e48148be5325462ab1cdd9280bd36f26ce3111 (diff) | |
download | rails-39e0d811b7a99112414c924a52ef196e5f22e6b9.tar.gz rails-39e0d811b7a99112414c924a52ef196e5f22e6b9.tar.bz2 rails-39e0d811b7a99112414c924a52ef196e5f22e6b9.zip |
Improve the "Caching with Rails" guide's introduction [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/caching_with_rails.md | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index 9d03b522bb..07dce1af56 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -3,12 +3,24 @@ Caching with Rails: An Overview =============================== -This guide is an introduction to speeding up your Rails app with caching. +This guide is an introduction to speeding up your Rails application with caching. + +Caching means to store content generated during the request-response cycle and +to reuse it when responding to similar requests. + +Caching is often the most effective way to boost an application's performance. +Through caching, web sites running on a single server with a single database +can sustain a load of thousands of concurrent users. + +Rails provides a set of caching features out of the box. This guide will teach +you the scope and purpose of each one of them. Master these techniques and your +Rails applications can serve millions of views without exorbitant response times +or server bills. After reading this guide, you will know: -* Page and action caching. * Fragment and Russian doll caching. +* How to manage the caching dependencies. * Alternative cache stores. * Conditional GET support. |