Hi!
I’m working on a multi page app. Each page loads the same dataframe using Pandas and has different st.multiselect to filter the data and show it on Dual Maps and Tables.
Initially, data comes from many CSV files, but i’m going to migrate to an Oracle database increasing it’s size to a couple of thounsands rows (by merging the CSV files).
My question is if theres any way to load the data in chaché and use it in each page (to no load it everytime I change the page) and program it ro reload cache every day/week.
The app will be running in our server, but i want it to be fast and capable to scalability.
Thanks for your help!