A simple, fast implementation of an in-memory LRU cache in pure perl.

This commit is contained in:
Andrey A. Chernov 2012-05-26 16:26:25 +00:00
parent def0e6e841
commit 926f1fd6e6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297491
5 changed files with 37 additions and 0 deletions

View File

@ -1348,6 +1348,7 @@
SUBDIR += p5-Cache-AgainstFile
SUBDIR += p5-Cache-Cache
SUBDIR += p5-Cache-FastMmap
SUBDIR += p5-Cache-LRU
SUBDIR += p5-Cache-Memcached-Tie
SUBDIR += p5-Cache-Mmap
SUBDIR += p5-Cache-Simple-TimedExpiry

View File

@ -0,0 +1,25 @@
# New ports collection makefile for: p5-Cache-LRU
# Date created: 2012-05-26
# Whom: Andrey Chernov <ache@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Cache-LRU
PORTVERSION= 0.03
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:KAZUHO
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= A simple, fast implementation of an in-memory LRU cache
TEST_DEPENDS= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple \
p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires
PERL_CONFIGURE= yes
MAN3= Cache::LRU.3
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (Cache-LRU-0.03.tar.gz) = 7131f08a266274d1c9d3dbac77b610fe69fe1c8589b919833cc0482b1732eae9
SIZE (Cache-LRU-0.03.tar.gz) = 19865

View File

@ -0,0 +1,4 @@
A simple, fast implementation of an in-memory LRU cache in pure perl with
the maximum number of entries to be stored within the cache object.
WWW: http://search.cpan.org/dist/Cache-LRU/

View File

@ -0,0 +1,5 @@
%%SITE_PERL%%/Cache/LRU.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Cache/LRU/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cache/LRU
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Cache
@dirrmtry %%SITE_PERL%%/Cache