To simplify my problem I suppose that I have an application that turns on intranet on the client. I suppose that the application has one single page and I am using ajax to interact with the server. I am using ajax for instance to download byte files (3Mo for each byte file as ajax object response from server), these byte files are drawn on canvas later on.
My questions are
1- Where are located these object response, is it on RAM, or hard disk?
2- If it is on RAM: When I do the second ajax call to download other files, I notice that my browser memory usage goes higher with every call, how can I clear these old objects response downloaded?
PS: I am sure they are stored somewhere because I can see old ajax response objects when I press F12 on the browser and I go to Network section. Thank you in advance and sorry for my English.