Vladimir Vedeneev
Results
3
issues of
Vladimir Vedeneev
In ASP.Net, there's no guarantee that a request will use the same thread for its entire duration, see here for example https://stackoverflow.com/a/4791234/2170171 As a result this logic with `[ThreadStatic]` works...
Logic in `LogRequests` method https://github.com/Geta/404handler/blob/6b0c6a09db559c47f4353585c7f8bbd975925091/src/Core/Logging/RequestLogger.cs#L42 looks really strange to me. In current state it tries to postpone message saving to database until after average requests per second becomes lower than...