aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-09-06 22:31:57 +0530
committerGitHub <noreply@github.com>2016-09-06 22:31:57 +0530
commit0c91b166e612d8dba0ededec99cfb39b85d31fbb (patch)
tree4f4dfb81b3b9976c0342dfe6d1aa8cba6b02244e /guides/source/caching_with_rails.md
parent1722397f9a63f74bc7ff633895aec7109568a25b (diff)
parentb9e98d62c24b04937a219285aef69c2a8344beab (diff)
downloadrails-0c91b166e612d8dba0ededec99cfb39b85d31fbb.tar.gz
rails-0c91b166e612d8dba0ededec99cfb39b85d31fbb.tar.bz2
rails-0c91b166e612d8dba0ededec99cfb39b85d31fbb.zip
Merge pull request #26408 from tricknotes/bye-mongrel-from-docs
Remove the word "mongrel" from documents [ci skip]
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r--guides/source/caching_with_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index a1b0029c47..fd7626250c 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -381,7 +381,7 @@ config.cache_store = :memory_store, { size: 64.megabytes }
```
If you're running multiple Ruby on Rails server processes (which is the case
-if you're using mongrel_cluster or Phusion Passenger), then your Rails server
+if you're using Phusion Passenger or puma clustered mode), then your Rails server
process instances won't be able to share cache data with each other. This cache
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,