dahlia / sqlalchemy-imageattach

SQLAlchemy extension for attaching images to entities.
https://sqlalchemy-imageattach.readthedocs.io/
MIT License
116 stars 25 forks source link

thread-localized BaseImageQuery._stored_images/_deleted_images #36

Open yoloseem opened 8 years ago

yoloseem commented 8 years ago

Faced an issue that session state be corrupted due to BaseImageQuery._stored_images and ._deleted_images are accessed via class level when we use gevent-based WSGI container and it gets high workload. To resolve converted that containers to thread(gevent)-local storage.