From 8cdeeb5b26c4e5e2a45bd8500ca5db0e025cb39f Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Wed, 5 Feb 2020 16:04:59 +0900 Subject: [PATCH] Fix syntax error [ci skip] --- guides/source/caching_with_rails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index 40070b9617..a3b09e189a 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -387,7 +387,7 @@ gem 'connection_pool' Next, pass the `:pool_size` and/or `:pool_timeout` options when configuring the cache store: ```ruby -config.cache_store = :mem_cache_store, "cache.example.com", pool_size: 5, pool_timeout: 5 +config.cache_store = :mem_cache_store, "cache.example.com", { pool_size: 5, pool_timeout: 5 } ``` * `:pool_size` - This option sets the number of connections per process (defaults to 5).