How to disable anonymous sessions
I thought this must be in the FAQ or something, but 20 min googling does not turn up much usefull. Closest I got was this: http://svn.nuxeo.org/trac/pub/ticket/600 At the moment we have 657 objects in /temp_folder/session_data and this must be quite a bit of overhead. We also have over a thousand "INFO(0) ZODB conflict error" a day, that I suspect are related to this. This should be simple, but I can not spot it :-( Anyone? Gaute Amundsen
Gaute Amundsen wrote at 2005-5-12 12:15 +0200:
... At the moment we have 657 objects in /temp_folder/session_data and this must be quite a bit of overhead.
Sessions are created on demand. When you do not use them, they are not created. That you see sessions means that you application code uses them. When you would disable them (you probably could do that with a customized SessionDataManager), you would get an exception at the place where you access the session. -- Dieter
participants (2)
-
Dieter Maurer -
Gaute Amundsen