ServerIdentity memory leak with IHttpAsyncHandler
- by Anton
I have a .NET web application that consists of a single HTTP handler class that implements IHttpAsyncHandler. All requests to this handler are handled asynchronously, though some requests are short-lived and some are long-lived (nothing over a few seconds).
The problem is that memory consumption grows over time as requests are handled. All…