| dharana (JIRA) 2005-05-18, 8:45 pm |
| [ http://issues.apache.org/jira/brows...ts#action_65715 ]
dharana commented on MODPYTHON-45:
----------------------------------
mod_python/Session.py from (mod_python_20050518163650.tar.gz) has a typo at line +364:
if timeout:
self._cleanup_timeout = timeout
else:
self._cleanup_timeout = Session.DFT_TIMEOUT
It should be:
if timeout:
self._cleanup_timeout = timeout
else:
self._cleanup_timeout = DFT_TIMEOUT
> Implement a file-based session manager
> --------------------------------------
>
> Key: MODPYTHON-45
> URL: http://issues.apache.org/jira/browse/MODPYTHON-45
> Project: mod_python
> Type: New Feature
> Versions: 3.1.4
> Reporter: Nicolas Lehuen
> Assignee: Nicolas Lehuen
> Priority: Minor
> Fix For: 3.2.0
>
> Right now mod_python comes with DbmSession and MemorySession. DbmSession performance can be pretty crappy if for any reason the anydbm module reverts to the dumbdbm implementation. With the current filesystems, implementing a file-based session manager
should be easy and should perform well.
> See the following thread : http://www.modpython.org/pipermail/...ril/017825.html
> I've checked in a preliminary implementation based on dharana's work. We'll have to cope with a few issues (namely locking) before it is final.
|