diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 18:30:01 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 18:30:01 +1100 |
commit | 477d17b31682a7f7f7718ef9fd98e65888c990bc (patch) | |
tree | cb1703c181b87f2dd1eb42c4610832223ebbdf78 /railties | |
parent | 15cfaa0a3634b23477f74dbfd1fafd351933e17c (diff) | |
download | rails-477d17b31682a7f7f7718ef9fd98e65888c990bc.tar.gz rails-477d17b31682a7f7f7718ef9fd98e65888c990bc.tar.bz2 rails-477d17b31682a7f7f7718ef9fd98e65888c990bc.zip |
Add perform_caching to config guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index ab9dd220bd..fcf7ba0ae5 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -230,6 +230,8 @@ h4. Configuring Action Controller * +config.action_controller.page_cache_extension+ configures the extension used for cached pages saved to +page_cache_directory+. Defaults to +.html+ +* +config.action_controller.perform_caching+ configures whether the application should perform caching or not. Set to _false_ in development mode, _true_ in production. + * +config.action_controller.default_charset+ specifies the default character set for all renders. The default is "utf-8". * +config.action_controller.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging. |