1Cache::NullCache(3) User Contributed Perl Documentation Cache::NullCache(3)
2
3
4
6 Cache::NullCache -- implements the Cache interface.
7
9 The NullCache class implements the Cache::Cache interface, but does not
10 actually persist data. This is useful when developing and debugging a
11 system and you wish to easily turn off caching. As a result, all calls
12 to get and get_object will return undef.
13
15 use Cache::NullCache;
16
17 my $cache = new Cache::NullCache( );
18
19 See Cache::Cache for the usage synopsis.
20
22 See Cache::Cache for the API documentation.
23
25 See Cache::Cache for standard options.
26
28 See Cache::Cache for default properties.
29
31 Cache::Cache
32
34 Original author: Jay Sachs
35
36 Last author: $Author: dclinton $
37
38 Copyright (C) 2001 Jay Sachs, 2002 DeWitt Clinton
39
40
41
42perl v5.30.1 2020-01-29 Cache::NullCache(3)