cm0002@lemmy.world to Programmer Humor@programming.dev · 21 hours agotimeoutSortlemmy.mlimagemessage-square30fedilinkarrow-up1410arrow-down13
arrow-up1407arrow-down1imagetimeoutSortlemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 21 hours agomessage-square30fedilink
minus-squareptu@sopuli.xyzlinkfedilinkarrow-up4·6 hours agoSo all items in the array are launched simultaneuously and ran in parallel instead of sequentially?
minus-squarescrion@lemmy.worldlinkfedilinkarrow-up2·4 hours agoThey are launched sequentially, but run simultaneously, yes - at least some of them. And they run concurrently but not in parallel - using a single execution context, there is only a single thread, so no parallelism exist.
minus-squareptu@sopuli.xyzlinkfedilinkarrow-up1·3 hours agoI see, I was only aware of sleep but that makes sense. Thanks for your insight.
So all items in the array are launched simultaneuously and ran in parallel instead of sequentially?
They are launched sequentially, but run simultaneously, yes - at least some of them. And they run concurrently but not in parallel - using a single execution context, there is only a single thread, so no parallelism exist.
I see, I was only aware of sleep but that makes sense. Thanks for your insight.