I new if I said something stupid someone would step forward with the
right answer :)

> -----Original Message-----
> From: Perrin Harkins [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, October 05, 2005 10:11 PM
> To: Barksdale, Ray
> Cc: Octavian Rasnita; modperl@perl.apache.org
> Subject: Re: What am I missing?
> 
> Barksdale, Ray wrote:
> >  set a timestamp in your sessions before untying.
> 
> That's for telling it that the session has changed by doing a 
> first level write to the tied hash.  This is only necessary 
> when you are writing to the second level and not touching the 
> first, e.g.
> 
> $session->{'user'}->{'favorite_color'} = 'mauve';
> 
> It doesn't need to be a timestamp either.  Just doing this 
> every time will work fine:
> 
> $session->{'touch'} = 1;
> 
> In any case, that doesn't seem to be the problem here.
> 
> - Perrin
> 

Reply via email to