G
Guest
I've done some searches on the gc in asp.net and not 100% sure how it works. I just implemented a new asp.net system that accesses only sql2000. The primary architecture is the .net data access class (the one provided on microsoft's site), a data access layer that returns strongly typed datasets and the aspx pages that interact with the data access layer. If I keep an eye on the memory being utilitized by the worker processes (via taskmgr) I see it start at around 30K and will grow to around 140k. Will this memory continue to grow until the garbage collector deems that the heap is full ? Is there something wrong with my code ( a memory leak of some problem ) ? If I stress test the site 5 concurrent users running for over 2 hours pounding all the pages the memory only went up about 6k over the 2 hour period. In Java I've used the heap analysis tool (HAT) to see the behavior of the gc. Is there something similar in .net ?