Skip to content

Commit

Permalink
cache_store has an extra option of :null_store.
Browse files Browse the repository at this point in the history
  • Loading branch information
siong1987 committed May 3, 2012
1 parent 36720af commit 7273ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/configuring.textile
Expand Up @@ -70,7 +70,7 @@ NOTE. The +config.asset_path+ configuration is ignored if the asset pipeline is


* +config.action_view.cache_template_loading+ controls whether or not templates should be reloaded on each request. Defaults to whatever is set for +config.cache_classes+. * +config.action_view.cache_template_loading+ controls whether or not templates should be reloaded on each request. Defaults to whatever is set for +config.cache_classes+.


* +config.cache_store+ configures which cache store to use for Rails caching. Options include one of the symbols +:memory_store+, +:file_store+, +:mem_cache_store+, or an object that implements the cache API. Defaults to +:file_store+ if the directory +tmp/cache+ exists, and to +:memory_store+ otherwise. * +config.cache_store+ configures which cache store to use for Rails caching. Options include one of the symbols +:memory_store+, +:file_store+, +:mem_cache_store+, +:null_store+, or an object that implements the cache API. Defaults to +:file_store+ if the directory +tmp/cache+ exists, and to +:memory_store+ otherwise.


* +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to true. * +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to true.


Expand Down

0 comments on commit 7273ada

Please sign in to comment.