Hi everyone,
I’m building an app in python for parsing logs and presenting multiple plots (using plotly) from the data it gets from there.
After each interaction all the plots are reloaded.
In an attempt to reload only the plots that suppose to change as a result of the interaction, I tried using st.cache but it didn’t work as I planned. The cached plots are not loaded at all after the interaction.
How should I implement it?