I have an Angular application that loads in only the needed controller / factory or service when it needs to. However i started wondering if all of these scripts eats up the memory the longer my client uses my application.
Take for instance the following example:
Client1 logs into my application here the following controllers are loaded:
LoginController
UserController
Together with these some factories and services are loaded in to store the user for furture reference.
As my Client1 goes through my system the application keeps on adding scripts but never dumping the ones it does not use.
At the last page of my application all of my controllers,factories and services has been loaded and stored in the memory however only a few is actually being used and only a few will be used again.
Should i be concerned about this once my application grows or is that just the normal procedure of AngularJs?