I work with a web application that is really memory hungry because the source encoders put on the client side of the business logic (JavaScript, jQuery). Thus, web browsers crash due to lack of memory when users work with many objects in the application.
Moving business logic to the server side is not a short-term option. So I searched the net for ideas on how to quickly reduce the memory footprint of an existing web page , but came out empty-handed.
Are there any general tips? (For example, can shortening JavaScript variable names result in significant improvement?)
source
share