Server IP : 85.214.239.14 / Your IP : 18.226.169.169 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/perl/5.36/Memoize/ |
Upload File : |
package Memoize::ExpireTest; =head1 NAME Memoize::ExpireTest - test for Memoize expiration semantics =head1 DESCRIPTION This module is just for testing expiration semantics. It's not a very good example of how to write an expiration module. If you are looking for an example, I recommend that you look at the simple example in the Memoize::Expire documentation, or at the code for Memoize::Expire itself. If you have questions, I will be happy to answer them if you send them to mjd-perl-memoize+@plover.com. =cut $VERSION = '1.03'; my %cache; sub TIEHASH { my ($pack) = @_; bless \%cache => $pack; } sub EXISTS { my ($cache, $key) = @_; exists $cache->{$key} ? 1 : 0; } sub FETCH { my ($cache, $key) = @_; $cache->{$key}; } sub STORE { my ($cache, $key, $val) = @_; $cache->{$key} = $val; } sub expire { my ($key) = @_; delete $cache{$key}; } 1;