I m trying to speed up response times in my ajax web application by doing the following:
Say the user requests a page whose contents don t change (e.g a web form). When the user makes a different request, I cache the form by putting it in a hidden div. Before displaying the new information. So the form is basically still loaded in the browser but not visible to the user. If the user requests the same form again, it gets loaded from the hidden div. That s notably faster than doing a round-trip to the server for the form.
I do realise doing so with lots of data will probably degrade performance as the browser gets to keep a lot in memory. But I will place a limit on how much gets "cached" this way.
Now, I came up with this on my own which is why I d like to know if there is a better/established way of doing this. It works as expected but I don t know what the possible drawbacks are (security-related perhaps?).
I would appreciate any suggestions. Many thanks.