1CHI::Driver::Null(3)  User Contributed Perl Documentation CHI::Driver::Null(3)
2
3
4

NAME

6       CHI::Driver::Null - Nothing is cached
7

VERSION

9       version 0.61
10

SYNOPSIS

12           use CHI;
13
14           my $cache = CHI->new(driver => 'Null');
15           $cache->set('key', 5);
16           my $value = $cache->get('key');   # returns undef
17

DESCRIPTION

19       This cache driver implements the full CHI interface without ever
20       actually storing items. Useful for disabling caching in an application,
21       for example.
22

SEE ALSO

24       CHI
25

AUTHOR

27       Jonathan Swartz <swartz@pobox.com>
28
30       This software is copyright (c) 2021 by Jonathan Swartz.
31
32       This is free software; you can redistribute it and/or modify it under
33       the same terms as the Perl 5 programming language system itself.
34
35
36
37perl v5.34.0                      2021-10-21              CHI::Driver::Null(3)
Impressum