Keep View in Cache

Is there any way to keep a specific view always available in the cache, so it doesn't have to reload every time it's navigated to? A session prop, perhaps?

For instance, I have one larger overview that takes some time to load before it shows up correctly. The experience during the wait isn't exactly great, and operators may want to use this screen as their main navigation tool, so waiting for it to load every time is undesirable.

I don't know about an entire view, but if it uses processed data, you could cache that.

Did you come to a solution for this @amarks ?

I ended up adding a CSS fade-in animation to all of my views and used a slightly slower fade-in for my larger views to improve the user experience, but no way to actually improve the load time of the view.