On Mon, 2005-12-26 at 19:16 +0100, [EMAIL PROTECTED] wrote: > one question more. thats my httpd.conf entry. I did not declared any > session handling (file, mysql, ...) in mason or apache (i think so :). > I only set masonallowglobals for %session to see it in all my components. > > So how is %session handled within requests? Is it standard as file or > memory or what? The values of %session are known > overall my mason components. And storing simple strings etc. in it is > ok, but a dbi handle will crash (?).
I really don't know how you're using Apache::Session, so all I can tell you is that storing database handles in sessions doesn't work because the entire contents of the session get sent through Storable. You should really only store the tiniest possible amount of data in a session, and release it as quickly as you can to free locks. - Perrin ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ Mason-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mason-users

