gnu: Add Cache-FastMmap.
* gnu/packages/perl.scm (perl-cache-fastmmap): New variable.
This commit is contained in:
parent
be73447995
commit
a1c9547f25
1 changed files with 21 additions and 0 deletions
|
@ -281,6 +281,27 @@ (define-public perl-cache-cache
|
||||||
easy to use abstraction of the filesystem or shared memory.")
|
easy to use abstraction of the filesystem or shared memory.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-cache-fastmmap
|
||||||
|
(package
|
||||||
|
(name "perl-cache-fastmmap")
|
||||||
|
(version "1.40")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
|
||||||
|
"Cache-FastMmap-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "http://search.cpan.org/dist/Cache-FastMmap")
|
||||||
|
(synopsis "Shared memory interprocess cache via mmap")
|
||||||
|
(description "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.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-capture-tiny
|
(define-public perl-capture-tiny
|
||||||
(package
|
(package
|
||||||
(name "perl-capture-tiny")
|
(name "perl-capture-tiny")
|
||||||
|
|
Loading…
Reference in a new issue