Benchmarking Revisited: Is WCF faster than ASP.NET Core? Of course not! Or is it? Previously, I wrote an article about how I got triggered after somebody on Reddit exclaimed that WCF was faster had lower response times than ASP.NET Web API and ASP.NET Core MVC.
Benchmarking Is WCF faster than ASP.NET Core? Of course not! Or is it? How does WCF, a 13-year-old mega-abstraction framework hold up against the modern, lean, ASP.NET Core? You’d be surprised.
Dependency Injection Inspecting aspects and interception in .NET, part 3 Previously in this series, I looked at ways we can instrument our code with two of the most basic metrics; how often does our code run and how long does it take to
Benchmarking Inspecting aspects and interception in .NET, part 2 Last time we evaluated a number of ways to add instrumentation to your code while keeping your code maintainable and legible. We landed on using interception and the cliffhanger question from last time
Benchmarking Inspecting aspects and interception in .NET, part 1 Recently I was tasked with adding instrumentation to a project: measuring how often methods were being called and how long each execution took. I had a couple of options. Timing it inside of