(no title)
bouke | 9 months ago
$ time dotnet run hello-world.cs > /dev/null
real 0m1.161s
user 0m0.849s
sys 0m0.122s
$ time dotnet run hello-world.cs > /dev/null
real 0m0.465s
user 0m0.401s
sys 0m0.065sbouke | 9 months ago
$ time dotnet run hello-world.cs > /dev/null
real 0m1.161s
user 0m0.849s
sys 0m0.122s
$ time dotnet run hello-world.cs > /dev/null
real 0m0.465s
user 0m0.401s
sys 0m0.065s
jaredpar|9 months ago
jbverschoor|9 months ago
It’s good that it allows scripts to run, and does packages. Simple is good
I was just curious and then surprised that it already caches compiled binaries, but that the time remained the same.
Kuinox|9 months ago
evntdrvn|9 months ago
thanks Jared and team, keep up the great work.
viraptor|9 months ago
It can easily add hundreds of milliseconds in various situations you can't easily control.
masfuerte|9 months ago
I had some Windows command-line apps written in C# that always took at least 0.5s to run. It was an annoying distraction. After Microsoft's improvements the same code was running in 0.2s. Still perceptible, but a great improvement. This was on a cheap laptop bought in 2009.
I'm aware that .Net is using a different runtime now, but I'm amazed that it so slow on a high-end modern laptop.
thatnerdyguy|9 months ago
doomroot13|9 months ago
toyg|9 months ago
unknown|9 months ago
[deleted]
bouke|9 months ago