May 05, 2008
Identifying a Memory leak A Memory Leak in an IIS process (INETINFO.EXE, DLLHOST.EXE, W3WP.EXE) occurs when Memory Usage in Task Manager continues to consume more than 50% of the physical RAM until running out of system memory or until the process stops...
1 comments
Tags: ASP.NET TipDebuggingASP.NETIISHigh Memory
Apr 25, 2008
A common problem we see when moving to .NET all revolves around the finalizer. There are a few reasons that this happens: Developers move from C/C++ to C# and are used to created classes with a constructor and destructor. Developers don’t understand...
1 comments
Tags: DebuggingASP.NETIIS.NETMicrosoftHigh Memory
Apr 22, 2008
Problem Description So this is a customer situation we found were the customer was getting an System.OutOfMemoryException. We were able to reproduce this with a console application that just ran: For Iterator = 0 To 99999999999 Regex.IsMatch(CONNECTION_STRING...
1 comments
Tags: ASP.NET TipDebuggingASP.NETIISHigh Memory