• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Cache/H30-Sep-2021-1,617435

t/H30-Sep-2021-2,1011,519

ChangesH A D30-Sep-202110 KiB304244

FastMmap.xsH A D30-Sep-202110.9 KiB550376

MANIFESTH A D30-Sep-2021459 4140

MANIFEST.SKIPH A D30-Sep-2021101 1110

META.jsonH A D30-Sep-20211.2 KiB5251

META.ymlH A D30-Sep-2021750 2827

Makefile.PLH A D30-Sep-2021798 2622

READMEH A D06-Nov-2020819 3923

mmap_cache.cH A D30-Sep-202132.2 KiB1,257678

mmap_cache.hH A D30-Sep-20217.5 KiB24135

mmap_cache_internals.hH A D30-Sep-20213.1 KiB13391

mmap_cache_test.cH A D23-Oct-20158.2 KiB385275

ppport.hH A D23-Oct-201514.4 KiB541271

unix.cH A D30-Sep-20215.4 KiB234139

win32.cH A D23-Mar-20206.8 KiB238163

README

1Cache::FastMmap
2===========================
3
4A shared memory cache through an mmap'ed file. It's core is written
5in C for performance. It uses fcntl locking to ensure multiple
6processes can safely access the cache at the same time. It uses
7a basic LRU algorithm to keep the most used entries in the cache.
8
9INSTALLATION
10
11To install this module type the following:
12
13   perl Makefile.PL
14   make
15   make test
16   make install
17
18DEPENDENCIES
19
20Storable if you want to store complex structures
21
22AUTHOR
23
24Rob Mueller <cpan@robm.fastmail.fm>
25
26DOCUMENTATION
27
28See the POD documentation. Viewable online at CPAN
29
30https://metacpan.org/pod/Cache::FastMmap
31
32COPYRIGHT AND LICENCE
33
34Copyright (C) 2003-2020 by Fastmail Pty Ltd
35
36This library is free software; you can redistribute it and/or modify
37it under the same terms as Perl itself.
38
39