3c45419fd9
A shared memory cache through an mmap'ed file. It's core is written in C for performance. It uses fcntl locking to ensure multiple processes can safely access the cache at the same time. It uses a basic LRU algorithm to keep the most used entries in the cache. submitted by Srebrenko Sehic, ssehic at gmail.com ok sturm@
24 lines
485 B
Makefile
24 lines
485 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/04/13 22:14:01 steven Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= "fast shared data cache using memory mapped files"
|
|
|
|
DISTNAME= Cache-FastMmap-1.09
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Srebrenko Sehic <haver@insecure.dk>
|
|
|
|
# GPL/Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Cache/}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
.include <bsd.port.mk>
|