Memcached – How can I provide shared state to my Flask app with multiple workers without depending on additional software?
I want to provide shared state for a Flask app which runs with multiple workers, i. e. multiple processes. To quote this answer from a similar question on this topic: You can't use global variables to hold this sort of…