my hosting provider has limited my app to 200MB of RAM. my app, uses more then that, (about 250), so their iis keeps crashing my app.
how can i get a hold of the memory heap, without accessing the server, which i obviously cant.
currently, im using Diagnostics.Process.GetCurrentProcess.PrivateMemorySize64 to figure out the size of my memory usage. but i still don't know WHAT is using the memory
it may be sessions, cached values, routing or anything else.
is it possible to get some better diagnostics via .net?
my googling shows that im probably looking for the memory heap, but i cant run any scripts on the server.
if i can get a list of all keys/values (and sizes) in the memory of my application, it would be an immense help
please advise
thank you all for taking the time to try and help
cheers,