Does Zope place a limit on how many variables one can store in REQUEST.SESSION? Any help would be greatly appreciated. Thanks. - Asad
Asad Habib wrote:
Does Zope place a limit on how many variables one can store in REQUEST.SESSION? Any help would be greatly appreciated. Thanks.
Not that I am aware of. The SESSION object is a dictionary-like object stored (normally) in /temp_folder/session_data. It is keyed via a browser id generated by the browser_id_manager and stored in a cookie on the client (or encoded in a URL). -Matt -- Matt Hamilton matth@netsight.co.uk Netsight Internet Solutions, Ltd. Business Vision on the Internet http://www.netsight.co.uk +44 (0)117 9090901 Web Design | Zope/Plone Development & Consulting | Co-location | Hosting
FWIW, there's a pretty exhaustive introduction on what sessions are and how to use them at http://zope.org/Documentation/Books/ZopeBook/2_6Edition/Sessions.stx On Thu, 2004-04-22 at 05:08, Matt Hamilton wrote:
Asad Habib wrote:
Does Zope place a limit on how many variables one can store in REQUEST.SESSION? Any help would be greatly appreciated. Thanks.
Not that I am aware of. The SESSION object is a dictionary-like object stored (normally) in /temp_folder/session_data. It is keyed via a browser id generated by the browser_id_manager and stored in a cookie on the client (or encoded in a URL).
-Matt
participants (3)
-
Asad Habib -
Chris McDonough -
Matt Hamilton