in reply to modperl PerlAuthenHandler script persistence
advantages of Cache::Cache:use Cache::FileCache; my $cache = Cache::FileCache->new; if(not $cache->get( $username )) { do_authentication(); if($authentication_succeeded) { $cache->set( $username, 1, "10 minutes" ); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: modperl PerlAuthenHandler script persistence
by perrin (Chancellor) on Mar 30, 2006 at 17:21 UTC | |
|
Re^2: modperl PerlAuthenHandler script persistence
by SirBones (Friar) on Mar 29, 2006 at 15:43 UTC |