Build a streamlit app for multiple users and avoid cross talk in which user can upload files process them and upload again and still retain all data?
I am basically building a streamlit
app that will be used by multiple users and I cant allow cross talk between users so I am not using any caching anywhere.
How can I retrieve the content of my streamlit application cache?
In Streamlit 1.35.0, there are useful functions that allows one to keep data in memory. Data is stored in application cache and this avoids having to upload the data every time a modification is made in the rest of the code.