From 8dacb0388763ec4da5198b2d6063b45067e16c21 Mon Sep 17 00:00:00 2001 From: olavmrk Date: Fri, 20 Jun 2014 11:24:38 +0000 Subject: Introduce dynamic memory pool for sessions This pool has a fixed size and the aim is to avoid arbitrary limits on entry's components, while maintaining an overall fixed entry size. Accessors function for a storage unit are provided for future use. Signed-off-by: Simo Sorce git-svn-id: https://modmellon.googlecode.com/svn/trunk@231 a716ebb1-153a-0410-b759-cfb97c6a1b53 --- README | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README') diff --git a/README b/README index eb48deb..2381713 100644 --- a/README +++ b/README @@ -97,6 +97,13 @@ for mod_auth_mellon. The following is an example configuration: # Default: MellonCacheSize 100 MellonCacheSize 100 +# MellonCacheEntrySize sets the maximum size for a single session entry in +# bytes. When mod_auth_mellon reaches this limit, it cannot store any more +# data in the session and will return an error. The minimum entry size is +# 65536 bytes, values lower than that will be ignored and the minimum will +# be used. +# Default: MellonCacheEntrySize 196608 + # MellonLockFile is the full path to a file used for synchronizing access # to the session data. The path should only be used by one instance of # apache at a time. The server must be restarted before any changes to this -- cgit