Apache2-WebApp-Plugin-Session-MySQL
    
    
  
  
  
view release on metacpan or search on metacpan
lib/Apache2/WebApp/Plugin/Session/MySQL.pm view on Meta::CPAN
    return;
}
#----------------------------------------------------------------------------+
# update( \%controller, $arg, \%data );
#
# Takes the cookie unique identifier or session id as arguments.  Updates
# existing session data.
sub update {
    my ( $self, $c, $arg, $data_ref )
      = validate_pos( @_,
          { type => OBJECT  },
          { type => HASHREF },
          { type => SCALAR  },
          { type => HASHREF }
          );
    $self->error('Malformed session identifier')
      unless ( $arg =~ /^[\w-]{1,32}$/ );
    
  
  
  
( run in 0.521 second using v1.01-cache-2.11-cpan-0a6323c29d9 )