X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FCookbook.pod;h=6b5d47ad64520beb7311553a7c3df2c6f7e858fc;hb=6570c3ad83269717de6e0c4d95a8948c8e35512f;hp=5e279f02854cc7e46419903ae933202e25d6984b;hpb=19a5b486abf8b8b24c7b5f42b52b52e079081df1;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index 5e279f0..6b5d47a 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME Catalyst::Manual::Cookbook - Cooking with Catalyst @@ -215,6 +217,10 @@ This is equivalent to: # configure email sending __PACKAGE__->config( email => [qw/SMTP localhost/] ); +L explains precedence of multiple sources for configuration +values, how to access the values in your components, and many 'base' +config variables used internally. + See also L. =head1 Skipping your VCS's directories @@ -1748,7 +1754,7 @@ allows old entries to be automatically expired when they are no longer needed. =head3 Page Caching Another method of caching is to cache the entire HTML page. While this is -traditionally handled by a front-end proxy server like Squid, the Catalyst +traditionally handled by a frontend proxy server like Squid, the Catalyst PageCache plugin makes it trivial to cache the entire output from frequently-used or slow actions. @@ -1786,7 +1792,7 @@ Note that the page cache is keyed on the page URI plus all parameters, so requests for / and /?foo=bar will result in different cache items. Also, only GET requests will be cached by the plugin. -You can even get that front-end Squid proxy to help out by enabling HTTP +You can even get that frontend Squid proxy to help out by enabling HTTP headers for the cached page. MyApp->config(