[Catalyst] porting C::FastMmap to use Cache::Cache

Sebastian Riedel sri at oook.de
Sun Mar 13 14:23:44 CET 2005


toddrw69 at excite.com wrote:

>MyApp->config(
>  # ...
>  session => {
>    class      => 'Apache::Session::MySQL',
>    Handle     => $dbh,
>    LockHandle => $dbh,
>  }
>);
>  
>
Yes, and don't forget to mention that only changes to the first level of 
the session hash are stored, since it's a tied hash here...

    $c->session->{foo} = { bar => 'yada' }; # stored
    $c->session->{foo}->{bar} = 'lalala';     # not stored

--sebastian



More information about the Catalyst mailing list