As I said to Tilly when asked why I didn't use the tried and true method of link lists, "Oh yeah, link lists. Perl's auto-hash made me forget them."
So, in that vein, I present the Reinvent the Wheel Cache #2 (I believe it works under all cases). I plan to do some benchmarking later on ... (even though nobody will probably see this node)
package cache2;
use strict;
## okay, a second shot at this
sub new {
my $self=bless {},shift;
## we keep track of lots of things
$self->{size}=shift || 30;
$self->{count}=0;
$self->{head}=undef;
$self->{tail}=undef;
$self->{hash}={};
$self;
}
sub ins {
my $self=shift;
my $key=shift;
my $val=shift;
## put it at the head (we walk down -- next is further down the chai
+n)
## create the hash ref
my $new={
prev => undef,
next => $self->{head},
key => $key,
value => $val,
};
## tack it on
$self->{head}=$new;
## and the hash for quick lookup
$self->{hash}->{$key}=$new;
$self->{count}++;
## do our size checking
if ($self->{count}==$self->{size}+1) {
$self->del($self->{tail}->{key});
}
}
sub del {
my $self=shift;
my $key=shift;
my $item=$self->{hash}->{$key};
return unless defined $item;
## reattach it's prev/next
$item->{prev}->{next}=$item->{next} if defined $item->{prev};
$item->{next}->{prev}=$item->{prev} if defined $item->{next};
## head/tail handling
$self->{head}=$item->{next} if $self->{head}==$item;
$self->{tail}=$item->{prev} if $self->{tail}==$item;
## and the hash
delete $self->{hash}->{$key};
## and the count
$self->{count}--;
}
sub get {
my $self=shift;
my $key=shift;
my $item=$self->{hash}->{$key};
return unless defined $item;
## move it to the front by
## delete it
$self->del($key);
## and add it
$self->ins($key,$item->{value});
$item->{value};
}
sub show {
my $self=shift;
my $item=$self->{head};
while (defined $item) {
print "$item: ";
print "key $item->{key} " if defined $item->{key};
print "value $item->{value} " if defined $item->{value};
print "\n";
$item=$item->{next};
}
}
1;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|