• snoweA
    link
    1015 months ago

    This is my favorite version of this so far.

      • stebo
        link
        fedilink
        165 months ago

        it’s not that random, it’s the original text

          • Maven (famous)OP
            link
            fedilink
            65 months ago

            I wouldn’t say you HAVE to know the original but it’s pretty common in memes for text to be replaced and the person doing the replacing to not know the original font.

            • Pyro
              link
              fedilink
              English
              55 months ago

              You at least have to know that it’s a meme format. Otherwise it just looks like someone complaining about async with a bad crop.

  • @[email protected]
    link
    fedilink
    English
    8
    edit-2
    5 months ago

    I’m actually laughing out loud at the amount of whitespace because thread routine is still executing lmao

  • AggressivelyPassive
    link
    fedilink
    75 months ago

    I honestly don’t know, why async got so popular. It seems like the entire reason for doing it was that some blokes were hellbent on using JS on a server and couldn’t fathom that a second thread might be a good idea.

    • @[email protected]
      link
      fedilink
      825 months ago

      If you are waiting for IO, why would you block your current thread and not let it do something else? Async does not only exist in JS.

      • AggressivelyPassive
        link
        fedilink
        -255 months ago

        De facto it is callback hell, though. Debugging Async code horrible and let’s be honest here: Async is just global-synchronized (or whatever it’s called it not-Java) with extra steps.

        • @[email protected]
          link
          fedilink
          255 months ago

          You have a very basic (mis)understanding of what async is and as such are misrepresenting it in your arguments.

    • idunnololz
      link
      fedilink
      485 months ago

      After using both extensively I would argue async code is easier to read. It has a lot less nesting. And generally easier to read code is a good thing so I’m all for async.

    • @Lmaydev
      link
      40
      edit-2
      5 months ago

      A huge amount of time in apps is spent waiting for IO, database or web requests to complete.

      Async prevents locking a thread during this wait.

      If you’re handling a large amount of requests in a web server, for example, it allows other requests to progress while waiting for these operations.

      Threads are also expensive to start and manage.

      Also handling threads manually is a pain in the ass.

      • @[email protected]
        link
        fedilink
        35 months ago

        Async prevents locking a thread during this wait.

        That’s a very common misconception. async is just a scheduling tool that runs at the end of event loop (microtask queue). It still runs on the main thread and you can still lock up your UI. You’d need Web Workers for actual multi-threading.

        • @[email protected]
          link
          fedilink
          English
          15 months ago

          It can lock up a UI doing cpu bound work. Making a web request, no. Preventing the ui thread from waiting on native IO is what async was created for.

            • @[email protected]
              link
              fedilink
              English
              15 months ago

              Yes I’m simplifying a LOT, but in the context of background web calls, that was what callbacks became so important for. XMLHttpRequest in IE 5 sparked the Ajax movement and adventures in nested callbacks.

              Prior to that, the browser had window.setTimeout and its callback for delays and animation and such - but that’s it.

              The main purpose of all this async callback stuff was originally, and arguably still is (in the browser), for allowing the ui event loop to run while network requests are made.

              NodeJS didn’t come into the picture for almost 10 years or so.

              • @[email protected]
                link
                fedilink
                1
                edit-2
                5 months ago

                Yeah, that’s a big simplification and I get it. But the async syntax itself syntax “sugar” for Promises. It’s not like C# or Java/Android where it will spawn a thread. If you take a JSON of 1000 rows and attach a promise/await to each of them, you won’t hit the next event loop until they all run to completion.

                It’s a common misconception that asynchronous means “run in background”. It doesn’t. It means run at end of current call stack.

                Prior to that, the browser had window.setTimeout and its callback for delays and animation and such - but that’s it.

                And you STILL have to call setTimeout in your async executions or else you will stall your UI.

                Again async is NOT background. It’s run later. async wraps Promise which wraps queueMicrotask.

                Here is a stack overflow that explains it more in detail.

                • @[email protected]
                  link
                  fedilink
                  English
                  15 months ago

                  I’m well aware how async works in the single threaded js environment. All code blocks the main thread! Calling await on an async operation yields back.

                  You’re right, async is commonly mixed up with multi-threaded. And in fact in many languages the two things work hand in hand. I’m very aware of how it works in JavaScript.

                  We are agreeing. Don’t need more info.

      • @[email protected]
        link
        fedilink
        15 months ago

        If you need to get multiple pieces of data for one request Async is great, but why would you work on different requests in the same thread? Why slow down one request because the other needs a bunch of computation?

        • @Lmaydev
          link
          35 months ago

          You aren’t slowing down anything. If you didn’t use async that thread would be blocked.

          You’d need a thread per request even though they are sat doing nothing while waiting for responses.

          Instead when you hit an await that thread is freed for other work and when the wait is over the rest of the code is scheduled to run.

    • @[email protected]
      link
      fedilink
      English
      275 months ago

      Because the alternative is a series of ridiculously nested call backs that make code hard to read and manage?

      I honestly can’t fathom how anyone would dislike async programming.

    • Nyfure
      link
      fedilink
      255 months ago

      Async is good because threads are expensive, might aswell do something else when you need to wait for something anyways.
      But only having async and no other thread when you need some computation is obviously awful… (or when starting anothe rthread is not easily manageable)

      Thats why i like go, you just tell it you want to run something in parallel and he will manage the rest… computational work, shift current work to new thread… just waiting for IO, async.

      • @[email protected]
        link
        fedilink
        -10
        edit-2
        5 months ago

        The “do something while waiting for something else” is not a reason to use async. That’s why blocking system calls and threads exist.

        Threads don’t need to be expensive. Max stack usage can be determined statically before choosing the size when spawning a thread.

        Any other reasons?

        • @[email protected]
          link
          fedilink
          85 months ago

          If you compare the performance of async rust vs. rust with blocking syscalls there’s not even a comparison. ‘epoll’ and the like are vastly more performant than blocking system io, async then it simply a way to make that kind of system interface nice to program with as you can ignore all that yielding and waking up and write straight-line code.

          Now, if all you do is read a config file, yes, all that is absolutely overkill. If you’re actually doing serious io though there’s no way around this kind of stuff.

          • @[email protected]
            link
            fedilink
            2
            edit-2
            5 months ago

            I assume by performance you mean CPU usage per io request. Each io call should require a switch to the kernel and back. When you do blocking io the switch back is delayed(switch to other threads while waiting), but not more taxing. How could it be possible for there to be a difference?

            • @[email protected]
              link
              fedilink
              3
              edit-2
              5 months ago

              Because the kernel doesn’t like you spawning 100k threads. Your RAM doesn’t, either. Even all the stacks aside, the kernel needs to record everything in data structures which now are bigger and need longer to traverse. Each thread is a process which could e.g. be sent a signal, requiring keeping stuff around that rust definitely doesn’t keep around (async functions get compiled to tight state machines).

              Specifically with io_uring: You can fire off quite a number of requests, not incurring a context switch (kernel and process share a ring buffer) and later on check on the completion status quite a number, also without having to context switch. If you’re (exceedingly) lucky no io_uring call ever cause a context switch as the kernel will work on that queue on another cpu. The whole thing is memory, not CPU, bound.

              Anyhow, your mode of inquiry is fundamentally wrong in the first place: It doesn’t matter whether you can explain why exactly async is faster (I probably did a horrible job and got stuff wrong), what matters is that benchmarks blow blocking io out of the water. That’s the ground truth. As programmers, as a first approximation, or ideas and models of how things work are generally completely wrong.

              • @[email protected]
                link
                fedilink
                15 months ago

                Because the kernel doesn’t like you spawning 100k threads.

                Why do you say this?

                Your RAM doesn’t, either

                Not if your stacks per thread are small.

                Even all the stacks aside, the kernel needs to record everything in data structures which now are bigger and need longer to traverse.

                These data structures must exist either in userland or the kernel. Moving them to the kernel won’t help anything. Also, many of these data structures scale at log(n). Splitting have the elements to userland and keeping the other half gives you two structures with log(n/2) so 2log(n/2) = log(n^2/4). Clearly that’s worse.

                Each thread is a process which could e.g. be sent a signal, requiring keeping stuff around that rust definitely doesn’t keep around (async functions get compiled to tight state machines).

                If signals were the reason async worked better, then the correct solution is to enable threads that opt-out of signals. Anything that slows down threads that isn’t present in an async design should be opt-out-able. The state-machines that async compiles to, do not appear inherently superior to multiple less stateful threads managed by a fast scheduler.

                Specifically with io_uring: You can fire off quite a number of requests, not incurring a context switch …

                As described here you would still need to do a switch to kernel mode and back for the syscalls. The extra work required from assuming processes are hostile to each other should be easy to avoid among threads known to have a common process as they are obviously not hostile to each other and share memory space anyway. The synchronization required to handle multiple tasks should be the same regardless if they are being run on the same thread by a user land scheduler or if they are running on multiple threads with an os scheduler.

                Anyhow, your mode of inquiry is fundamentally wrong in the first place: …

                I’m not interested in saying that async is the best because it appears to work well currently. That’s not the right way to decide the future of how to do things. That’s just a statement of how things are. I agree, if your only goal is get the fastest thing now with no critical thought, then it does appear that async is faster. I am unconvinced it must fundamentally be the case.

                • @[email protected]
                  link
                  fedilink
                  15 months ago

                  Why do you say this?

                  Have you tried?

                  Not if your stacks per thread are small.

                  Page size is 4k it doesn’t get smaller. The kernel can’t give out memory in more fine-grained amounts, at least not without requiring a syscall on every access which would be prohibitively expensive.

                  Anything that slows down threads that isn’t present in an async design should be opt-out-able.

                  That’s what async does. It opts out of all the things, including having to do context switches when doing IO.

                  As described here you would still need to do a switch to kernel mode and back for the syscalls.

                  No, you don’t: You can poll the data structure and the kernel can poll the data structure. No syscalls required. Kernel can do it on one core, the application on another, so in the extreme you don’t even need to invoke the scheduler.


                  I am unconvinced it must fundamentally be the case.

                  You can e.g. have a look at whether you can change the hardware to allow for arbitrarily small page sizes. The reaction of hardware designers will be first “are you crazy”, then, upon explaining your issue, they’ll tell you “well then just use async what’s the problem”.

        • @[email protected]
          link
          fedilink
          English
          55 months ago

          Threads don’t need to be expensive.

          Well too bad cause they are.

          Go ahead and spin up a web worker and transfer a bunch of data to it and tell us how long you had to wait.

          • @[email protected]
            link
            fedilink
            -2
            edit-2
            5 months ago

            The only way I have heard threads are expensive, in the context of handling many io requests, is stack usage. You can tell the os to give less memory (statically determined stack size) to the thread when it’s spawned, so this is not a fundamental issue to threads.

            Go ahead and spin up a web worker and transfer a bunch of data to it and tell us how long you had to wait.

            Time to transfer data to one thread is related to io speed. Why would this have anything to do with concurrency model?

            • @[email protected]
              link
              fedilink
              English
              25 months ago

              Well I just told you another one, one actually relevant to the conversation at hand, since it’s the only one you can use with JavaScript in the context of a web browser.

              • @[email protected]
                link
                fedilink
                1
                edit-2
                5 months ago

                You cant say async is the fundamentally better model because threading is purposely crippled in the browser.

                The conversation at hand is not “how do io in browser”. Its “async is not inherently better than threads”

                • @[email protected]
                  link
                  fedilink
                  English
                  1
                  edit-2
                  5 months ago

                  No, because async is fundamentally a paradigm for how to express asynchronous programming, i.e. situations where you need to wait for something else to happen, threading is not an alternative to that, callbacks are.

    • @[email protected]
      link
      fedilink
      155 months ago

      Ok, I’m a c# developer and I use async await quite extensively. Is it different in JS? Or am I missing something?

      • @[email protected]
        link
        fedilink
        English
        165 months ago

        Nah, they’re very similar, really. You generally kick IO heavy stuff you don’t need immediately off to async await.

        There are a few more applications of it in C# since you don’t have the “single thread” to work with like in JS. And the actual implementation under the hood is different, sure. But conceptually they’re similar. Pretty sure JS was heavily influenced by C#'s implementation and syntax.

    • @[email protected]
      link
      fedilink
      10
      edit-2
      5 months ago

      Async rust with the Tokio Framework is pretty cool. Need none of that JS bloat for async.

      • @[email protected]
        link
        fedilink
        35 months ago

        Honestly I can’t wrap my head how to effectively put computation into a thread, even with Tokio.

        All I want is something like rayon where you got a task queue and you just yeet tasks into a free thread, and await when you actually need it

        Might be too much JS/TS influence on me, or that I can’t find a tutorial that would explain in a way that clicks for me

        • Spaz
          link
          fedilink
          35 months ago

          Tokio specifically says not to use it for CPU intensive tasks and rayon would be better for this: https://tokio.rs/tokio/tutorial

          Speeding up CPU-bound computations by running them in parallel on several threads. Tokio is designed for IO-bound applications where each individual task spends most of its time waiting for IO. If the only thing your application does is run computations in parallel, you should be using rayon. That said, it is still possible to “mix & match” if you need to do both. See this blog post for a practical example

        • @[email protected]
          link
          fedilink
          15 months ago

          Tokio is for concurrency, not parallelism. Use it for IO stuff. They say rayon is good for that, but I haven’t used that. If you just want something simple, I’d recommend working with threadpool.

      • cooljacob204
        link
        fedilink
        -115 months ago

        Async Rust sucks. I hate how many libraries use it, forcing it apon you.

        • @[email protected]
          link
          fedilink
          7
          edit-2
          5 months ago

          You suck, I hate how your comment was forced “apon” me. Anyone who claims things that they can easily avoid if theyre so opinionated against them are “forced upon” them are always pathetic people.

          • cooljacob204
            link
            fedilink
            1
            edit-2
            5 months ago

            Have you programmed with rust a day in your life? Once you introduce one library that requires Tokio async you have to start wrapping all your calls that involve it in async shit.

            So many better concurrency patterns out there.

            And these libraries are not easily avoidable. Ex: most AWS libraries require it.

            And forgive me for a stupid typo, I have had little sleep the last week but you are an asshole that thinks belittling people somehow makes you right so it doesn’t really matter.

    • @[email protected]
      link
      fedilink
      10
      edit-2
      5 months ago

      Imagine a webser or proxy and for every incoming request it creates an new thread 💣

      Yes you’re right if it’s a second or third thread it is/may be fine. But if you’re i/o bound and your application has to manage quite a lot of that stuff in parallel, there is no way around delegating that workload to the kernel’s event loop. Async/Await is just a very convenient abstraction of that Ressource.

    • @[email protected]
      link
      fedilink
      9
      edit-2
      5 months ago

      async/await is just callback() and queueMicrotask wrapped up into a neat package. It’s not supposed to replace multi-threading and confusing it for such is dangerous since you can still stall your main/UI thread with Promises (which async also wraps).

      (async and await are also technically different things, but for the sake of simplicity here, consider them a pair.)

    • @[email protected]
      link
      fedilink
      -4
      edit-2
      5 months ago

      Async got popular when the choices for clientside code in the browser were “Javascript” or “go fuck yourself.” It’s an utterly miserable way to avoid idiotic naive while() stalling. But it was the only way.

  • @[email protected]
    link
    fedilink
    55 months ago

    async/await could be useful if one creates an entire program designed on and for it, but it stops being acceptable as soon as I need two .thens inside of each other because I tried to use fetch in a non-async app without race conditions

  • @[email protected]
    link
    fedilink
    45 months ago

    Honestly, I don’t get it.

    Is it about the syntax sugar? Would you like to use callbacks instead?

    Async programming is when you achive concurrency even with one thread. It’s needed. There’s no alternative to this.

  • neo (he/him)
    link
    fedilink
    English
    25 months ago

    We’re here asyncronously waiting for the rest of the meme.