Shot in the dark here, but I was wondering if there is an easy way to make it so that data is not persisted amongst user sessions.
Long story short, I accidentally built my app around an object that is a global variable. Initially, I was not aware of how this breaks your app as I did not come across any issues given that I was running my app locally. Once I deployed, I noticed that the app was persisting data stored in that global variable between sessions.
I am aware that having the object stored in dcc.store is probably the best solution, however, I was wondering if there is an alternative method to quickly patch things up. I am not looking to have any data whatsoever persist on reload, so that is not a concern at all for me.
I am not sure how easy it would be to re-factor my code such that the object variable is stored in dcc.store, as I have not seen many examples of an object/class being stored that way.
Any insight, guidance, or advice would be appreciated