https://github.com/zms-publishing/tempstorage
https://github.com/zms-publishing/tempstorage
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zms-publishing/tempstorage
- Owner: zms-publishing
- License: other
- Created: 2020-03-11T08:32:18.000Z (about 6 years ago)
- Default Branch: transaction_memory_loss_workaround
- Last Pushed: 2020-03-11T08:32:45.000Z (about 6 years ago)
- Last Synced: 2025-02-17T05:15:30.696Z (over 1 year ago)
- Language: Python
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
Overview
========
A storage implementation which uses RAM to persist objects, much like
MappingStorage. Unlike MappingStorage, it needs not be packed to get rid of
non-cyclic garbage and it does rudimentary conflict resolution. This is a
ripoff of Jim's Packless bsddb3 storage.
**Please note: Usage of this package is deprecated, as it is known to randomly lose data, especially with Zope 4.**
For a detailed discussion see `#8 `_ as well as `#12 `_
To replace server-side sessions, cookies are probably your best bet, as these also get rid of any denial of service problems that server side sessions are vulnerable to.
If you need server side storage of sessions, consider using a normal store rather than tempstorage for your session data.
For details and suggestions see `this discussion in the pull request `_ as well as the discussion in the aforementioned bug reports as well as `the discussion in Zope about the removal of the generated configuration `_.