initial import of Cache::FastMmap 1.09

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@
This commit is contained in:
steven 2006-04-13 22:14:01 +00:00
parent 133c5e6d02
commit 3c45419fd9
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# $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>

View File

@ -0,0 +1,4 @@
MD5 (Cache-FastMmap-1.09.tar.gz) = 513e715813ff55c534e7b0cebbffedad
RMD160 (Cache-FastMmap-1.09.tar.gz) = b53d5c564a8cdd49eb17ba359af7b902fe57eaf2
SHA1 (Cache-FastMmap-1.09.tar.gz) = bea11a393f9b377ae300b692dc237efd6dfb4475
SIZE (Cache-FastMmap-1.09.tar.gz) = 36275

View File

@ -0,0 +1,4 @@
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.

View File

@ -0,0 +1,14 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/04/13 22:14:01 steven Exp $
${P5ARCH}/
${P5ARCH}/Cache/
${P5ARCH}/Cache/FastMmap/
${P5ARCH}/Cache/FastMmap.pm
${P5ARCH}/Cache/FastMmap/CImpl.pm
${P5ARCH}/auto/
${P5ARCH}/auto/Cache/
${P5ARCH}/auto/Cache/FastMmap/
${P5ARCH}/auto/Cache/FastMmap/CImpl/
${P5ARCH}/auto/Cache/FastMmap/CImpl/CImpl.bs
${P5ARCH}/auto/Cache/FastMmap/CImpl/CImpl.so
@man man/man3p/Cache::FastMmap.3p
@man man/man3p/Cache::FastMmap::CImpl.3p