Reputation: 30375
I have tried to find some data on performance of these two targets compared, but did not succeed. I am interested in a asp.net5 web application that runs on Windows (Or azure web app e.g.). Is there any significant difference in performance or from that point of view the targets are roughly equal?
Upvotes: 8
Views: 4470
Reputation: 13709
As far as benchmarks are concerned, they can all be found on GitHub on aspnet/benchmarks
They even include the tools and procedure to run the benchmark yourself on your system.
So far, ASP.NET 4.6 is able to handle 57,843 requests per seconds. And ASP.NET 5 on Kestrel can handle 168,005 requests per seconds.
As for performance differences, you might be interested in all the bugs currently open:
Lots of work needs to be done before RTM.
Upvotes: 5