No video

Turbocharged: Writing High-Performance C# and .NET Code - Steve Gordon

  Рет қаралды 67,549

NDC Conferences

NDC Conferences

Күн бұрын

Пікірлер: 59
@ahives
@ahives 4 жыл бұрын
This is a great talk. I just gave an internal talk on Performance Engineering where I went over BenchmarkDotNet and how I use it to optimize certain algorithms. I also went over the role of microbenchmarking on refactoring designs to be more performant. Needless to say, this talk went over really well. I got this notification on KZbin after I gave my talk so I decided to distribute it internally. Again, excellent talk.
@joechang8696
@joechang8696 4 жыл бұрын
What I would like is for certain objects, typically larger ones, to get an virtual address of some granular size, and allocate from its own set of pages. On dispose, both the VAS and memory pages can be easily recycled. To a degree, this would be like SQL Server, which makes extensive use of 8KB pages. This make it difficult to handle large objects. Hence, for C# at 64-bit, we would like to allocate large chunks of VAS, memory in regular (4K), large pages (2M) or even huge.
@kevinlettier5273
@kevinlettier5273 4 жыл бұрын
Great talk, very informative. The optimized code is really different from the original one and it seems that when you start through that way you cannot easily come back, so to use with care as you mentioned and on critical path. I would love to see on next talk how you can conciliate self documenting approach of the original code and the performance of the optimized one, maybe by decoupling the concrete processing from the orchestration flow ?
@elerius2
@elerius2 4 жыл бұрын
29:30 Spans in async methods. They should improve the compiler to allow span in async so long as the usage of the span doesn't overlap an async operation. I understand the workaround isn't that difficult, but it "feels bad" to factor the usage out into a separate method. Even if it required introducing an explicit scope to contain the span, it would be an improvement.
@philipmrch8326
@philipmrch8326 4 жыл бұрын
I agree, I've thought about this solution too.
@clearlyunwell
@clearlyunwell 4 жыл бұрын
Excellent, thank you!
@MrMichaeljosiah
@MrMichaeljosiah 4 жыл бұрын
Really good presentation. Very informative
@GordonGEICO
@GordonGEICO 3 жыл бұрын
"... you'll end up with a StackOverflowException and then you'll end up on Stack Overflow trying to work out why." Which will, inevitably, lead to your question getting closed for being a duplicate, even though none of the links to the (completely unnecessary) third party libraries work because the projects were abandoned long ago.
@GeorgeTsiros
@GeorgeTsiros 3 жыл бұрын
SO is a disaster. The SNR is too low.
@karldavis7392
@karldavis7392 Жыл бұрын
I try to group questions asked of the user together. Let's say I have five questions, and need five seconds of processing to handle each. If I ask all five questions back-to-back, then do 25 seconds of processing, the user feels it's faster, because they can go do something else instead of waiting for the app.
@slavimo
@slavimo 3 жыл бұрын
Instead of String.Join() you could have use StringBuilder instead to get rid of those allocations. So the comparison of String.Join vs StringBuilder vs Span is lacking in your example, IMO.
@axedaddy1
@axedaddy1 4 жыл бұрын
And we get all this functionality for three.
@Adiounys
@Adiounys 4 жыл бұрын
31:45 - is testing index before replacing really faster? It seem like it's searching for the space twice.
@default632
@default632 4 жыл бұрын
Test
@Adiounys
@Adiounys 4 жыл бұрын
@@default632 Well I just did. Here are my results 00:00:04.4693173 replace 00:00:06.2901262 indexReplace 00:00:01.6881407 replace[NoSpace] 00:00:01.6519704 indexReplace[NoSpace] 00:00:09.3153027 Replace[LastSpace] 00:00:09.2847721 indexReplace[LastSpace] 00:00:09.3679662 Replace[FirstSpace] 00:00:09.3879821 indexReplace[FirstSpace] 00:00:10.1380442 Replace[long] 00:00:10.0772212 indexReplace[long] And here are input strings I used: testedMethods = new List{ ("replace", ()=>replaceTest("ab cd")), ("indexReplace", ()=>indexReplaceTest("ab cd")), ("replace[NoSpace]", ()=>indexReplaceTest("abcd")), ("indexReplace[NoSpace]", ()=>indexReplaceTest("abcd")), ("Replace[LastSpace]", ()=>indexReplaceTest("Soiqpbiosdssdadsatoeigsdawdqdsadqwcx ")), ("indexReplace[LastSpace]", ()=>indexReplaceTest("Soiqpbiosdssdadsatoeigsdawdqdsadqwcx ")), ("Replace[FirstSpace]", ()=>indexReplaceTest(" Soiqpbiosdssdadsatoeigsdawdqdsadqwcx")), ("indexReplace[FirstSpace]", ()=>indexReplaceTest(" Soiqpbiosdssdadsatoeigsdawdqdsadqwcx")), ("Replace[long]", ()=>indexReplaceTest("Soiqpbiosdssdadsat oeigsdawdqdsadqwcx")), ("indexReplace[long]", ()=>indexReplaceTest("Soiqpbiosdssdadsat oeigsdawdqdsadqwcx")), };
@lollo4711
@lollo4711 4 жыл бұрын
since every cpu-tick counts (money) on cloud computing/hosting those aspects really come (back) into consideration (for years I lost overview/interest how 'fast' my code (really) runs and how much it consumes [on fat clients])
@odee2004
@odee2004 4 жыл бұрын
How did they get the "not equal" and "less than equal" using only one text/char in Visual studio? @33:25
@neutralenull
@neutralenull 3 жыл бұрын
Using a different font like firacode
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Blow
@Geoters
@Geoters 4 жыл бұрын
At 34:39 code line 117 has c != ' ' but it looks much different. What kind of sorcery is that and how can i do it??
@WilliamSandersAu
@WilliamSandersAu 4 жыл бұрын
Had a quick look into this, apparently you have to install a font into Visual Studio that supports ligatures (e.g. Fira Code).
@Roy192
@Roy192 4 жыл бұрын
There's also a version of consolas that has ligatures: github.com/somq/consolas-ligaturized Just remember to restart visual studio after changing the font.
@GeorgeTsiros
@GeorgeTsiros 3 жыл бұрын
@@WilliamSandersAu screw fira code. go with ubuntu mono ligaturized
@mottahh4162
@mottahh4162 4 жыл бұрын
wouldn't using a span with strings, if we changed the original string the span will also be changed, also, a slice of a span will be effected by the changes done on the original span
@dongbinrabbit
@dongbinrabbit 4 жыл бұрын
strings are immutable and strings can only be converted to readonly spans.
@CodeWithSteve
@CodeWithSteve 4 жыл бұрын
@@dongbinrabbit Yep exactly!
@focl2003
@focl2003 4 жыл бұрын
What is the font he's using?
@ayoubihbibibi2404
@ayoubihbibibi2404 4 жыл бұрын
Same question !!!!!
@focl2003
@focl2003 4 жыл бұрын
@@Flynnor thank you, I'll check it out.
@Adiounys
@Adiounys 4 жыл бұрын
I know Codist can make similar looks marketplace.visualstudio.com/items?itemName=wmj.Codist
@jr.BoarOfGold
@jr.BoarOfGold 4 жыл бұрын
He's using Fira Code
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Baelley
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Below
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Kofeley
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
ASME blow
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Wellekey
@CarrotCakeMake
@CarrotCakeMake 4 жыл бұрын
So it is a slice in Rust.
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Allo
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Ettay konney
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Jegna
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Gotta
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Hubbeny
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Wanna Eye
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Kemey
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Kemey me ziarikey
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Sllestiom nattey
@minnedanhieux883
@minnedanhieux883 5 ай бұрын
Nice talk... but comming from c++... meh.
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Eweniy
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Kemey ke
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Nattey
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Ewe
@Esico6
@Esico6 4 жыл бұрын
.net is pretty fast out of the box but if you want performance dont use it. .net will work against you. It can be done but too much workarounds and .net GC tuning. Never use linq on areas where u need perf.
@hichamo-sfh177
@hichamo-sfh177 4 жыл бұрын
I don't think so Because linq still highly performance than using a loop and if statements ..
@ahives
@ahives 4 жыл бұрын
Hmm. Just curious, have you ever built critical healthcare systems that operate at scale before? I co-maintain the most performant healthcare parser in the world that executes in nanoseconds/microseconds and it uses LINQ and other functional programming concepts. In my experience your statement is not valid. If you are curious, here it is github.com/MassTransit/Machete.
4 жыл бұрын
.net is pretty fast out of the box but if you want performance dont use it
4 жыл бұрын
@@hichamo-sfh177 Take a look : github.com/microsoft/referencesource/blob/master/System.Core/System/Linq/Enumerable.cs Why do you think it is faster than loop and if statements if they are just that?
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Sellestiom
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Reay
@belowasmelashgebremariam
@belowasmelashgebremariam 2 жыл бұрын
Baelley
How I Did The SELF BENDING Spoon 😱🥄 #shorts
00:19
Wian
Рет қаралды 36 МЛН
Prank vs Prank #shorts
00:28
Mr DegrEE
Рет қаралды 5 МЛН
Smart Sigma Kid #funny #sigma #comedy
00:40
CRAZY GREAPA
Рет қаралды 38 МЛН
小丑把天使丢游泳池里#short #angel #clown
00:15
Super Beauty team
Рет қаралды 40 МЛН
What is Span in C# and why you should be using it
15:15
Nick Chapsas
Рет қаралды 252 М.
.NET Conf: Focus on AI
dotnet
Рет қаралды 1,1 М.
The fastest way to iterate a List in C# is NOT what you think
13:42
Nick Chapsas
Рет қаралды 156 М.
8 await async mistakes that you SHOULD avoid in .NET
21:13
Nick Chapsas
Рет қаралды 311 М.
Using Immutable Data Structures in C# and .NET - Spencer Schneidenbach
47:27
Double the Performance of your Dictionary in C#
15:12
Nick Chapsas
Рет қаралды 66 М.
How to INCREASE C# Performance using SPAN
10:32
Nick Proud
Рет қаралды 8 М.
How I Did The SELF BENDING Spoon 😱🥄 #shorts
00:19
Wian
Рет қаралды 36 МЛН