Preserving global state in a flask application
I am trying to save a cache dictionary in my flask application. As far as I understand it, the Application Context, in particular the flask.g object should be used for this. Setup: import flask as f app = f.Flask(__name__) Now if I do: with app.app_context(): f.g.foo = “bar” print f.g.foo It prints bar. Continuing with … Read more