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

..03-May-2022-

CHANGESH A D18-Apr-20018.6 KiB208178

COPYINGH A D15-Apr-200012.2 KiB249200

CREDITSH A D18-Apr-20012.1 KiB4534

Cache.pmH A D17-Apr-200167 KiB2,7921,078

DISCLAIMERH A D15-Apr-20001.2 KiB2219

MANIFESTH A D18-Apr-200186 1210

Makefile.PLH A D27-Nov-2000361 169

READMEH A D17-Apr-20011.7 KiB7042

test.plH A D18-Apr-200111.7 KiB682422

README

1Copyright (C) 2000, 2001 DeWitt Clinton <dewitt@unto.net>, eZiba.com, Inc.
2
3   This program is free software; you can redistribute it and/or modify
4   it under the terms of the GNU General Public License as published by
5   the Free Software Foundation; either version 1, or (at your option)
6   any later version.
7
8   This program is distributed in the hope that it will be useful,
9   but WITHOUT ANY WARRANTY; without even the implied warranty of
10   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11   GNU General Public License for more details.
12
13   You should have received a copy of the GNU General Public License
14   along with this program; if not, write to the Free Software
15   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17
18NAME
19
20  File::Cache
21
22DESCRIPTION
23
24  File::Cache implements an object store where data is persisted
25  across processes in the filesystem.  It was written to compliment
26  IPC::Cache.
27
28  Where IPC::Cache is faster for small numbers of simple objects,
29  File::Cache tends toward being more performant when caching large
30  numbers of complex objects.
31
32REQUIREMENTS
33
34  Storable (optional, if you have Data::Dumper)
35  Digest::MD5.
36
37INSTALLATION
38
39  perl Makefile.PL
40  make
41  make test
42  make install
43
44USAGE
45
46  see perldoc File::Cache
47
48SEE ALSO
49
50  IPC::Cache
51
52NOTES AND CAVEATS
53
54  Use of File::Cache is now discouraged in favor of the new
55  Cache::Cache project, also available on CPAN.  Cache::Cache offers
56  all of the functionality of File::Cache, as well as integrating
57  the functionality of IPC::Cache and a number of new features.  You
58  can view the Cache::Cache project page at:
59
60    http://sourceforge.net/projects/perl-cache/
61
62
63
64  Version 0.13 breaks old caches.  You will want to remove them when
65  upgrading.
66
67
68
69
70