-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
29 lines (20 loc) · 854 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Readme for Cache
The Cache modules are designed to assist a developer in persisting data for a
specified period of time. Often these modules are used in web applications to
store data locally to save repeated and redundant expensive calls to remote
machines or databases.
The Cache package provides the 'Cache' module, a generic interface for
creating persistent data stores. The interface is implemented by the
Cache::Memory and Cache::File modules.
This work aggregates and extends the original Cache::Cache modules.
For more details, see the pod documentation in Cache.pm.
For licensing, see the LICENSE file in this distribution.
To install:
perl Makefile.PL
make
make test
sudo make install
will probably do it.
Please send any bug reports to Chris Leishman <[email protected]>.
Messages of thanks are also appreciated :)
Enjoy!