diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-19 17:20:59 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-19 17:20:59 -0800 |
commit | 1ffa4abcd595b98ad83bc6b80cdf3b5a30fa25c9 (patch) | |
tree | 8166a82ce5eaedfb2caaac9e612958cf9c617875 /guides/source | |
parent | 4f28e54424ba34c749ac236e6c98bfb9a53c9b6c (diff) | |
parent | 99eb1eb4dfcb3a270deb1f83d495749a90a1d08e (diff) | |
download | rails-1ffa4abcd595b98ad83bc6b80cdf3b5a30fa25c9.tar.gz rails-1ffa4abcd595b98ad83bc6b80cdf3b5a30fa25c9.tar.bz2 rails-1ffa4abcd595b98ad83bc6b80cdf3b5a30fa25c9.zip |
Merge pull request #12961 from jbaudanza/doc
Update caching guide with respect to :namespace
Diffstat (limited to 'guides/source')
-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 b0ab88bf59..0d45e5fb28 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -189,7 +189,7 @@ The main methods to call are `read`, `write`, `delete`, `exist?`, and `fetch`. T There are some common options used by all cache implementations. These can be passed to the constructor or the various methods to interact with entries. -* `:namespace` - This option can be used to create a namespace within the cache store. It is especially useful if your application shares a cache with other applications. The default value will include the application name and Rails environment. +* `:namespace` - This option can be used to create a namespace within the cache store. It is especially useful if your application shares a cache with other applications. * `:compress` - This option can be used to indicate that compression should be used in the cache. This can be useful for transferring large cache entries over a slow network. |