X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F05_Authentication.pod;h=e7c3f76f0f79ff598050b93656c2f4cf7f4a3090;hp=c94964747687b6de2adc469ca30a12c8a7d22b31;hb=95455c7469ba8f867677a85aec7cd9623e0dd2d8;hpb=0b60bbb5b9d7bd37b028ba4833a379b32e7b0eb7 diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index c949647..e7c3f76 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -229,7 +229,7 @@ C is new): Authentication Session - Session::Store::FastMmap + Session::Store::File Session::State::Cookie /; @@ -254,16 +254,15 @@ the Makefile.PL file something like this: requires 'Catalyst::Plugin::Authentication'; requires 'Catalyst::Plugin::Session'; - requires 'Catalyst::Plugin::Session::Store::FastMmap'; + requires 'Catalyst::Plugin::Session::Store::File'; requires 'Catalyst::Plugin::Session::State::Cookie'; Note that there are several options for L. -L or -L is +L is generally a good choice if you are on Unix. If you are running on -Windows, try -L. Consult +Windows +L is fine. Consult L and its subclasses for additional information and options (for example to use a database- backed session store).