Is there a way to conditionally disable caching for a view?
For example, I have View A that contains a large list of items, and a “settings” button on the header which will take me to view B.
On View B, if a user clicks “cancel” I want to go back to the cached View A, otherwise if they click “save” I want to reload View A (settings on View B can affect content on View A)
Is there a way I can conditionally use the cached View A, or reload View A again?
Thanks!!