/usr/share/perl5/Cache/Ref/LRU.pm is in libcache-ref-perl 0.04-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | package Cache::Ref::LRU;
BEGIN {
$Cache::Ref::LRU::AUTHORITY = 'cpan:NUFFIN';
}
BEGIN {
$Cache::Ref::LRU::VERSION = '0.04';
}
# ABSTRACT: Least recently used expiry policy
use Moose;
use Cache::Ref::Util::LRU::List;
use namespace::autoclean;
extends qw(Cache::Ref);
with qw(
Cache::Ref::Role::API
Cache::Ref::Role::Index
);
has size => (
isa => "Int",
is => "ro",
required => 1,
);
has lru_class => (
isa => "ClassName",
is => "ro",
default => "Cache::Ref::Util::LRU::List",
);
has _lru => (
does => "Cache::Ref::Util::LRU::API",
is => "ro",
lazy_build => 1,
);
sub _build__lru { shift->lru_class->new }
sub get {
my ( $self, @keys ) = @_;
my @e = $self->_index_get(@keys);
$self->_lru->hit(map { $_->[1] } grep { defined } @e);
return ( @keys == 1 ? $e[0][0] : map { $_ && $_->[0] } @e );
}
sub hit {
my ( $self, @keys ) = @_;
$self->_lru->hit( map { $_->[1] } $self->_index_get(@keys) );
return;
}
sub expire {
my ( $self, $how_many ) = @_;
my $l = $self->_lru;
$self->_index_delete( $l->remove_lru ) for 1 .. ($how_many || 1);
return;
}
sub set {
my ( $self, $key, $value ) = @_;
my $l = $self->_lru;
if ( my $e = $self->_index_get($key) ) {
$l->hit($e->[1]);
$e->[0] = $value;
} else {
if ( $self->_index_size == $self->size ) {
$self->expire(1);
}
$self->_index_set( $key => [ $value, $l->insert($key) ] );
}
return $value;
}
sub clear {
my $self = shift;
$self->_lru->clear;
$self->_index_clear;
return;
}
sub remove {
my ( $self, @keys ) = @_;
$self->_lru->remove(map { $_->[1] } $self->_index_delete(@keys));
return;
}
__PACKAGE__->meta->make_immutable;
__PACKAGE__;
# ex: set sw=4 et:
__END__
=pod
=encoding utf-8
=head1 NAME
Cache::Ref::LRU - Least recently used expiry policy
=head1 SYNOPSIS
my $c = Cache::Ref::LRU->new(
size => $n,
);
=head1 DESCRIPTION
This is an implementation of the least recently used expiry policy.
It provides both an array and a doubly linked list based implementation. See
L<Cache::Ref> for a discussion.
=head1 ATTRIBUTES
=over 4
=item size
The size of the live entries.
=item lru_class
The class of the LRU list implementation.
=back
=head1 AUTHOR
Yuval Kogman
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Yuval Kogman.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|