Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MVC 6 .NET Core vs. .NET Framework 4.6 performance comparison

I searched on the Internet, but I could not find the performance comparison of these technologies

  • ASP.NET CORE MVC 6 on .NET Framework 4.6 (Full .Net framework)
  • ASP.NET CORE MVC 6 on .NET Core (.NetCoreApp 1.1)

What is the difference performance between all of these?

I have to rewrite some of my code to go through the net core

like image 218
Şafak Avatar asked Dec 11 '22 12:12

Şafak


1 Answers

There is no ASP.NET CORE MVC 6. Do you mean asp.net mvc 6 on full framework vs asp.NET Core on .NET Core ? From the latest benchmarks for asp.NET Core

ASP.NET Core and asp.net mvc benchmarks Request per second

  • benchmarks
  • ASP.NET Core exceeds 1.15 Million RPS

If you would like to check out the general run-time performance for .NET Core vs full .net framework

  • run-time performance

If you would like to migrate to ASP.NET Core , You may want to refer not only performance

  • choosing .NET Core
  • porting to .NET Core
  • SO post on difference between frameworks
like image 73
Rohith Avatar answered Jan 19 '23 00:01

Rohith