[Catalyst-commits] r7771 - in
trunk/Catalyst-Plugin-Session-Store-FastMmap: .
lib/Catalyst/Plugin/Session/Store
karpet at dev.catalyst.perl.org
karpet at dev.catalyst.perl.org
Thu May 22 16:48:07 BST 2008
Author: karpet
Date: 2008-05-22 16:48:07 +0100 (Thu, 22 May 2008)
New Revision: 7771
Modified:
trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
Log:
patch from Ton Voon to expose unlink_on_exit config option
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2008-05-21 15:34:51 UTC (rev 7770)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2008-05-22 15:48:07 UTC (rev 7771)
@@ -1,5 +1,7 @@
0.06 XXX
- die when Cache::FastMmap::set() returns false value (RT #33667)
+ - patch from ton.voon at altinity.com to pass unlink_on_exit option
+ to Cache::FastMmap
0.05 16 Jan 2008
- removed all Module::Build cruft - karman
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2008-05-21 15:34:51 UTC (rev 7770)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2008-05-22 15:48:07 UTC (rev 7771)
@@ -125,7 +125,7 @@
share_file => $cfg->{storage},
(
map { $_ => $cfg->{$_} }
- grep { exists $cfg->{$_} } qw/init_file cache_size/
+ grep { exists $cfg->{$_} } qw/init_file cache_size unlink_on_exit/
),
)
);
@@ -169,6 +169,8 @@
=item cache_size
+=item unlink_on_exit
+
See the L<Cache::FastMmap> documentation for the meaning of these keys. If
these keys are not present L<Cache::FastMmap>'s defaults will be used.
More information about the Catalyst-commits
mailing list