A simple, fast implementation of an in-memory LRU cache in pure perl.
This commit is contained in:
parent
def0e6e841
commit
926f1fd6e6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297491
@ -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
|
||||
|
25
devel/p5-Cache-LRU/Makefile
Normal file
25
devel/p5-Cache-LRU/Makefile
Normal 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>
|
2
devel/p5-Cache-LRU/distinfo
Normal file
2
devel/p5-Cache-LRU/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (Cache-LRU-0.03.tar.gz) = 7131f08a266274d1c9d3dbac77b610fe69fe1c8589b919833cc0482b1732eae9
|
||||
SIZE (Cache-LRU-0.03.tar.gz) = 19865
|
4
devel/p5-Cache-LRU/pkg-descr
Normal file
4
devel/p5-Cache-LRU/pkg-descr
Normal 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/
|
5
devel/p5-Cache-LRU/pkg-plist
Normal file
5
devel/p5-Cache-LRU/pkg-plist
Normal 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
|
Loading…
Reference in New Issue
Block a user