mbr / flask-kvsession

A drop-in replacement for Flask's session handling using server-side sessions.
http://pythonhosted.org/Flask-KVSession/
MIT License
168 stars 53 forks source link

Use FilesystemStore instead of DictStore in the documentation example. #5

Closed SimonSapin closed 12 years ago

SimonSapin commented 12 years ago

DictStore doesn’t work if Flask is served with multiple Python interpreters (eg. multi-process), it is a bad recommendation.

mbr commented 12 years ago

Hmm, not sure this is an issue, since it is meant to be a simple example. However, the FilesystemStore example is just about as simple and if you ran into problems, I guess it can't hurt =).