Navigation Menu

Skip to content

Commit

Permalink
Merge pull request rails#6137 from FLOChip/cache_documentation
Browse files Browse the repository at this point in the history
cache_store has an extra option of :null_store.
  • Loading branch information
vijaydev committed May 3, 2012
2 parents 5c0cbb3 + 7273ada commit ab7b550
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.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.

Expand Down

0 comments on commit ab7b550

Please sign in to comment.