Giter VIP home page Giter VIP logo

Comments (10)

davidfowl avatar davidfowl commented on May 20, 2024 3

Accessing .Result would be faster after the task has completed. awaiting the task is more idiomatic but results in a bigger state machine with more states (one for each await point in the method).
Look at the codegen here:

https://sharplab.io/#v2:EYLgtghgzgLgpgJwD4AEAMACFBGArAbgFgAoEgNwgQykTIEsBjODAXgwDs4B3DAZVsZwAFAEoipYhSoxoAa2ytqApgDoA4nBgBBKAE92DIQCIAFjBgAHEAHprXeyuB12AcxUMA9mCNjylDDJQsgBMijQI9Koa2noGxmaWNnYOLh4eLgA2cO5ePuIoAJxYAGwqAOomcOxaGRlCgfIANAFywb6S/ghwUACuGTAKbA3YKgBK3X0w+Bh+VF29/aFDrWMT/eIkKKH8EYIzxADeJBgnWADMJQA8OGgAfBjROvqGNxg9CBkirPcopQBiCC84wWMCE70+4gAvkA=

VS

https://sharplab.io/#v2:EYLgtghgzgLgpgJwD4AEAMACFBGArAbgFgAoEgNwgQykTIEsBjODAXgwDs4B3DAZVsZwAFAEoipYhSoxoAa2ytqApgDoA4nBgBBKAE92DIQCIAFjBgAHEAHprXeyuB12AcxUMA9mCNjylDDJQsgBMijQI9Koa2noGxmaWNnYOLh4eLgA2cO5ePuIoAJxYAGwqAOomcOxaGRlCgfIANAFywb6S/ghwUACuGTAKbIUtQdj4GH5UXb39oUNFDcHiJCih/BGCE8QA3iQY+1gAzCUAPDhoAHwY0Tr6hucYPQgZIqxXKKUAYgheAErdfRgQieL3EAF8gA=

from aspnetcorediagnosticscenarios.

alefranz avatar alefranz commented on May 20, 2024 3

I think another aspect to consider in picking one solution over the other is how do you want to handle exceptions, in particular on how you want to handle the scenario when only some tasks are failing.

from aspnetcorediagnosticscenarios.

worming004 avatar worming004 commented on May 20, 2024 1

Based on feedbacks, conclusion is that first version

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = task1.Result; 
var result2 = task2.Result;

have quite more performance than second version.

But second version

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
var result1 = await task1; 
var result2 = await task2;

is more idiomatic.

Thanks for precision, it's enough to restart debate with my coworkers.

from aspnetcorediagnosticscenarios.

jjavierdguezas avatar jjavierdguezas commented on May 20, 2024

I've always had this doubt
Regardless of the use of Result, the first of your codes could execute faster since Task.WhenAll could execute both Tasks in parallel.
I wonder if in this scenario the first code will be considered good practice ๐Ÿค”
Maybe a modified version of the second one

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = await task1; 
var result2 = await task2;

It would be as fast as first due to Task.WhenAll and it is also avoiding Result (awaiting for the completed tasks should be immediate, but a little weird)

from aspnetcorediagnosticscenarios.

jjavierdguezas avatar jjavierdguezas commented on May 20, 2024

So @davidfowl, would would recommend the first version?

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = task1.Result; 
var result2 = task2.Result;

from aspnetcorediagnosticscenarios.

worming004 avatar worming004 commented on May 20, 2024

I've got enough feedback for me. Ticket can be close IMO.
But I see more concern raised by other people.

I let other people close this one, as some questions are pending. If there is no more activities several days, I'll close myself.

Thanks

from aspnetcorediagnosticscenarios.

andleer avatar andleer commented on May 20, 2024

A third version was introduced by @jjavierdguezas mid conversation and it isn't completely clear to me who is talking about which...

var task1 = service.GetAsync1();
var task2 = service.GetAsync2();
await Task.WhenAll(task1, task2);
var result1 = await task1; 
var result2 = await task2;

Does the await Task.WhenAll(task1, task2); improve or harm performance? @davidfowl uses this in his comparison. What if that line is omitted? Does it simplify the state machine denoted by @davidfowl ?

from aspnetcorediagnosticscenarios.

worming004 avatar worming004 commented on May 20, 2024

Wihout any update, I close this issue.
Thanks everyone

from aspnetcorediagnosticscenarios.

davidfowl avatar davidfowl commented on May 20, 2024

@andleer that's even more awaits ๐Ÿ˜„ so it's not as efficient.

from aspnetcorediagnosticscenarios.

andleer avatar andleer commented on May 20, 2024

@davidfowl agree that it is even more awaits but you used that scenario in your 2nd sharplap.io / codegen example. I realize it was most likely unintentional but I wonder if the inclusion impacts your comment earlier in this thread. Either way, I will take idiomatic over minimal performance differences. Thanks for all the contributions here!

from aspnetcorediagnosticscenarios.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.