[Answered ]-Django: global variables in multi-connections

2👍

The answer is clear, surely: you should not be using global variables. If you need to store state for a user, do it in the session or the database.

Leave a comment