I have a server code with a global dictionary variable. It works fine with a single-process gunicorn but when I make it multi-process I get errors because the values do not reach this dictionary.
I believe the root cause is that the dictionary can not be shared between processes.
Is there any workaround for this kind of a problem?