Data::Session::Driver::File(3pm) | User Contributed Perl Documentation | Data::Session::Driver::File(3pm) |
Data::Session::Driver::File - A persistent session manager
See Data::Session for details.
Data::Session::Driver::File allows Data::Session to manipulate sessions via files.
To use this module do this:
See "Case-sensitive Options" in Data::Session for important information.
Creates a new object of type Data::Session::Driver::File.
"new()" takes a hash of key/value pairs, some of which might mandatory. Further, some combinations might be mandatory.
The keys are listed here in alphabetical order.
They are lower-case because they are (also) method names, meaning they can be called to set or get the value at any time.
When debug is 1, $! is included in error messages, but because this reveals directory names, it is 0 by default.
This key is optional.
Default: 0.
This key is normally passed in as Data::Session -> new(directory => $string).
Default: File::Spec -> tmpdir.
This key is optional.
This key is normally passed in as Data::Session -> new(file_name => $string_containing_%s).
Default: 'cgisess_%s'.
This key is optional.
This key is normally passed in as Data::Session -> new(no_flock => $boolean).
Default: 0.
This key is optional.
'Influences' means the value is bit-wise ored with O_RDWR for reading and with O_WRONLY for writing.
This key is normally passed in as Data::Session -> new(no_follow => $boolean).
Default: eval{O_NOFOLLOW} || 0.
This key is optional.
This key is normally passed in as Data::Session -> new(umask => $octal_value).
Default: 0660.
This key is optional.
Typical values are 0, 1 and 2.
This key is normally passed in as Data::Session -> new(verbose => $integer).
This key is optional.
Deletes from storage the session identified by $id.
Returns 1 if it succeeds, and dies if it can't.
Retrieves from storage the session identified by $id, or dies if it can't.
Returns the result of reading the session from the file identified by $id.
This result is a frozen session. This value must be thawed by calling the appropriate serialization driver's thaw() method.
Data::Session calls the right thaw() automatically.
Writes to storage the session identified by $id, together with its data $data.
Storage is a file identified by $id.
Returns 1 if it succeeds, and dies if it can't.
Retrieves all ids via their file names, and for each id calls the supplied subroutine with the id as the only parameter.
Returns 1.
Log a bug on RT: <https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Session>.
Data::Session was written by Ron Savage <ron@savage.net.au> in 2010.
Home page: <http://savage.net.au/index.html>.
Australian copyright (c) 2010, Ron Savage.
All Programs of mine are 'OSI Certified Open Source Software'; you can redistribute them and/or modify them under the terms of The Artistic License, a copy of which is available at: http://www.opensource.org/licenses/index.html
2023-02-14 | perl v5.36.0 |