aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-26 20:44:09 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-27 22:29:56 +0900
commit4b3ee155f916a60da34c4f3df72b83adc891779e (patch)
tree7e7722b31b0ef7eea6de1cc1fa6b875f3f0abaf9 /guides/source/caching_with_rails.md
parent9fd6ccea03f97e9fe4d9ca48f0b90d7be3bc9d3b (diff)
downloadrails-4b3ee155f916a60da34c4f3df72b83adc891779e.tar.gz
rails-4b3ee155f916a60da34c4f3df72b83adc891779e.tar.bz2
rails-4b3ee155f916a60da34c4f3df72b83adc891779e.zip
Remove trailing spaces [ci skip]
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r--guides/source/caching_with_rails.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index 6cdce5c2f4..2e5f4e3878 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -387,9 +387,9 @@ 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 are configured to use this implementation in development environment by default.
+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`,
+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
@@ -580,7 +580,7 @@ Caching in Development
----------------------
It's common to want to test the caching strategy of your application
-in development mode. Rails provides the rake task `dev:cache` to
+in development mode. Rails provides the rake task `dev:cache` to
easily toggle caching on/off.
```bash