GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Apache::Session::Store::SharedMem(3) User Contributed Perl Documentation Apache::Session::Store::SharedMem(3)

Apache::Session::Store::SharedMem - Store persistent data in shared memory

 use Apache::Session::Store::SharedMem;
 
 my $store = new Apache::Session::Store::SharedMem;
 
 $store->insert($ref);
 $store->update($ref);
 $store->materialize($ref);
 $store->remove($ref);

This module fulfills the storage interface of Apache::Session. The serialized objects are stored in shared memory.

This module can optionally take one argument in the usual Apache::Session style. The name of the option is expires_in, and the value is the amount of time, in seconds, that the data in the session will expire in.

 # session wil expire in a day
 tie %s, 'Apache::Session::SharedMem', undef, { expires_in => 86400 };

This module was written by Simon Wistow <simon@twoshortplanks.com>.

Copyright 2000, 2001 Simon Wistow <simon@twoshortplanks.com> This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Apache::Session, Apache::Session::SharedMem, IPC::Cache
2004-09-22 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.