1File(3) User Contributed Perl Documentation File(3)
2
3
4
6 QWizard::Storage::File - Stores data in a file
7
9 my $st = new QWizard::Storage::File(file => '/path/to/some/file');
10 $st->set('var', 'value');
11 $st->get('var');
12
13 # optionally bootstrap from an existing file:
14 $st->load_data();
15
17 Stores data passed to it in a file (and in memory for faster lookups).
18
19 Generally speaking this should *not* be used except when being copied
20 to from another faster storage mechanism (like a
21 QWizard::Storage::Memory object).
22
23 This module is actually a child class of QWizard::Storage::Memory.
24
26 Wes Hardaker, hardaker@users.sourceforge.net
27
29 perl(1)
30
31 Net-Policy: http://net-policy.sourceforge.net/
32
33
34
35perl v5.36.0 2022-07-22 File(3)