diff options
author | Vipul A M <vipulnsward@gmail.com> | 2017-03-24 18:14:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 18:14:01 +0530 |
commit | 684de497a8c60c9cb367ff2e3657fb785c2a35ea (patch) | |
tree | fd44f129fe56e9b7c5684387af2e53e82bdf2550 /guides | |
parent | 07dfd808b614f3e888261cff245afc1a07be321b (diff) | |
download | rails-684de497a8c60c9cb367ff2e3657fb785c2a35ea.tar.gz rails-684de497a8c60c9cb367ff2e3657fb785c2a35ea.tar.bz2 rails-684de497a8c60c9cb367ff2e3657fb785c2a35ea.zip |
Doc cleanup for caching guide [ci skip] (#28556)
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/caching_with_rails.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index 798fea9f30..6cdce5c2f4 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -387,10 +387,10 @@ store is not appropriate for large application deployments. However, it can work well for small, low traffic sites with only a couple of server processes, as well as development and test environments. -New Rails projects will be configured to use this implementation in the -development environment by default. (Note that, because processes will not share -cache data, if using `:memory_store` it will not be possible to manually read, -write or expire the cache via the Rails console.) +New Rails projects are configured to use this implementation in development environment by default. + +NOTE: Since processes will not share cache data when using `:memory_store`, +it will not be possible to manually read, write or expire the cache via the Rails console. ### ActiveSupport::Cache::FileStore |