Hello everyone, I’m currently deploying a Flask-based web application on PythonAnywhere, and I would like to request that my app be limited to 1 worker as I am currently on a paid tier.
The reason for this is that my application relies on in-memory (local/session-based) storage during a user’s session. Since multiple workers can handle requests independently, this can lead to inconsistent behaviour or loss of session data when requests are routed to different workers.
I know this is bad practice but I have intentionally restricted the use of any shared/long-term storage for this project.