[Catalyst-commits] r13658 - in Catalyst-Plugin-Session-Store-FastMmap/trunk: . lib/Catalyst/Plugin/Session/Store

karpet at dev.catalyst.perl.org karpet at dev.catalyst.perl.org
Fri Oct 22 14:42:46 GMT 2010


Author: karpet
Date: 2010-10-22 14:42:46 +0000 (Fri, 22 Oct 2010)
New Revision: 13658

Modified:
   Catalyst-Plugin-Session-Store-FastMmap/trunk/Changes
   Catalyst-Plugin-Session-Store-FastMmap/trunk/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
Log:
add page_size config per RT #62335

Modified: Catalyst-Plugin-Session-Store-FastMmap/trunk/Changes
===================================================================
--- Catalyst-Plugin-Session-Store-FastMmap/trunk/Changes	2010-10-22 06:14:58 UTC (rev 13657)
+++ Catalyst-Plugin-Session-Store-FastMmap/trunk/Changes	2010-10-22 14:42:46 UTC (rev 13658)
@@ -1,3 +1,6 @@
+0.14   xxx
+        - Added "page_size" config option per RT #62335 (karpet)
+
 0.13   18 Oct 2009
         - Fixup copyright ino
 

Modified: Catalyst-Plugin-Session-Store-FastMmap/trunk/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
===================================================================
--- Catalyst-Plugin-Session-Store-FastMmap/trunk/lib/Catalyst/Plugin/Session/Store/FastMmap.pm	2010-10-22 06:14:58 UTC (rev 13657)
+++ Catalyst-Plugin-Session-Store-FastMmap/trunk/lib/Catalyst/Plugin/Session/Store/FastMmap.pm	2010-10-22 14:42:46 UTC (rev 13658)
@@ -128,7 +128,7 @@
             share_file  => ($file . ''),  # force serialize in case it is a Path::Class object
             (
                 map { $_ => $cfg->{$_} }
-                  grep { exists $cfg->{$_} } qw/init_file cache_size unlink_on_exit/
+                  grep { exists $cfg->{$_} } qw/init_file cache_size page_size unlink_on_exit/
             ),
         )
     );




More information about the Catalyst-commits mailing list