Тёмный

RustLatam 2019 - Without Boats: Zero-Cost Async IO 

Rust
Подписаться 62 тыс.
Просмотров 52 тыс.
50% 1

Boats is a member of the language design, library, and cargo teams of the Rust Project. They are Senior Research Engineer working on Rust for Mozilla Research. Contributing to Rust since 2014, they've done design work for significant language extensions like generic associated types and constant generics. For the last year, Boats has been focused on adding async/await syntax for non-blocking I/O to Rust.
Follow us on Twitter: / rustlatamconf

Наука

Опубликовано:

 

4 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 37   
@aurelienvabre5867
@aurelienvabre5867 5 лет назад
It's really inspiring to see how you guys stick to the values you have chosen for the language. How you push yourself to find a solution for zero cost abstraction async/await is just one example of that. Thank you Rust team!
@maxwellflitton3973
@maxwellflitton3973 Год назад
I agree, I'm watching this now and I'm inspired
@Shepherd1234
@Shepherd1234 5 лет назад
Without Boats? Instant like
@marklewis1438
@marklewis1438 5 лет назад
Best syntax ever. Simple, beautiful and so readable. Thank you!
@rohits79
@rohits79 2 года назад
you can thank MSFT for the async/await syntax
@thingsiplay
@thingsiplay 3 года назад
I never programmed or read about async io and I understand what this guy talks. You guys are doing incredible good work and the result speaks for itself.
@sunnycareboo8924
@sunnycareboo8924 5 лет назад
Thanks for putting this talk up!
@akhanda-
@akhanda- 5 лет назад
That's the best explanation I ever had about asynchronous IO
@Ryco117
@Ryco117 4 месяца назад
Here I am, 5 years later, and I can't imagine writing async Rust code without async/await. Very well done!
@laciferin
@laciferin Месяц назад
Amazing talk!! Very inspiring !! I chose Go over Rust 6 years ago cuz Rust didn't support async await natively at the time.Wish I had watched this video some time down the road. In 2024, i m starting with Rust.. Gotto to say its an amazing language for all people who consider coding as their passion.
@Onkoe
@Onkoe Год назад
This was an excellent talk. Thanks for sharing! I especially loved the "in-room" feeling of the video - felt a lot like a TED Talk. Thanks again!
@dancunmanyinsa2920
@dancunmanyinsa2920 5 лет назад
Excellent work from the Rust team. Boats killed the Async talk. Rust is a beast guys : )
@n00dles4
@n00dles4 5 лет назад
That was a great explanation, thanks for this!
@BenjaminCronce
@BenjaminCronce 5 лет назад
I love this kind of stuff
@shawnkovac1042
@shawnkovac1042 4 года назад
great & super video!! even the last 'x' ended the talk on a nice laugh. Boats is so good that even his mistakes are turned to a positive thing. super useful talk! loved it! I was floored to see a very important application of a the common proverb 'Good things come to those who wait.' Thanks Rust team for not destroying the language with futures and instead 'waiting' to make 'async' and 'wait' with the same quality that the rest of the language has! it was worth the 'wait' to not destroy Rust!
5 лет назад
Awesome explanation! Rust always feels as this extremely well thought-out language regarding performance and such, which is a breeze looking at languages like JavaScript.
@farhanyousaf5616
@farhanyousaf5616 4 года назад
Pretty neat. This project is trying to work out where they want to be, rather than focusing on getting somewhere fast.
@draakisback
@draakisback 5 лет назад
Really reminds me of the dart future API. Of course that makes sense since it's just async await.
@masonkramer6612
@masonkramer6612 5 лет назад
Great
@nazarm6215
@nazarm6215 5 лет назад
Excited, hope it's just as nice as in JS
@aleksandrkravtsov8727
@aleksandrkravtsov8727 4 года назад
what is the slides presentation style you use? looks very cool, like old projectors in which you should insert cards with pictures on it
@geshtu1760
@geshtu1760 5 лет назад
I'm curious to know how much CPU overhead the polling adds, and how does this compare to something like Node.JS? Anyone know?
@knnmran
@knnmran Год назад
this video is a good reminder of how as a software engineer i am riding on the shoulders of giants.
@mb77mb66
@mb77mb66 9 месяцев назад
Man great video, though I think you should have taken a Bensedin or something for the nerves :D
@sandtrick
@sandtrick 3 года назад
Here for the monthly viewing
@eukaryote0
@eukaryote0 5 лет назад
The code on the slides is hard to read
@Archidamus
@Archidamus 4 года назад
"Zero cost" is like 1 allocation. Callback model does not work in rust because it requires allocation to keep callback.
@haystackdmilith
@haystackdmilith 4 года назад
Java has native system threads as well. It has abstractions over green threads - sure, but it's not default
@meamzcs
@meamzcs 3 года назад
Actually Java did have Green Threads way way back in like 1.0 but they were removed a long long time ago and currently the only implementation of java.lang.Thread there is is one that maps to System Threads. But currently there is an effort called Project Loom in the Open JDK community that aims to introduce a second implementation called Virtual Threads which will be very lightweight Green Threads and which will hopefully make it into OpenJDK as a preview within a year.
@sandtrick
@sandtrick 3 года назад
Hi Rust community! I'm new to programming and low level computer knowledge. Computers are fascinating and Rust feels like a great place to start (also working through nand2tetris). I'm practicing recall. I'm wondering if folks could help me by telling me what I've got wrong, what's on the right track, and which of my take-aways from this talk are correct? This is what I have put together after watching: In Rust, async/await follows a model of sleep, wake on i/o, poll, repeat on a value of type `Future` where the future is a value waiting to be resolved in a pre allocated heap of memory called a "state machine." * The statemachine is heap memory that is "pinned" in place because it contains references to itself. * In Rust, memory that is "pinned" cannot be moved or copied until it is dereferenced. * Were the statemachine to be moved or copied the self-references would point to the wrong block of memory. * the statemachine tells the compiler how much memory is needed for each state the future will be in over the course of it's life. The compiler takes the sum of this memory and now knows how much it will need to look for on the heap at runtime for a given future. from what i understand, * an "executor" and a "waker" pass a reference to the statemachine back and forth. * The executor uses the value stored in the statemachine until it puts it to sleep because it is waiting on i/o. Then, the executor passes the reference to the statemachine to the "waker." The waker will wait until it is notified from the operating system that i/o has occured (at this time, the value in the statemachine is of the same state it was when the executor passed the reference). Now the waker passes the reference back to the executor so it can manipulate the value in the statemachine until it reaches the next state. This repeats until the value in the statemachine hunk of memory reaches it's final state. At that point the value in the statemachine will no longer change that the hunk of memory that stores the statemachine will remain "pinned" until it is dereferenced. BTW, even if my understanding is correct, is async/await still implemented like this? Thank you!! Keep being great and have a good day!
@arhyth
@arhyth 5 лет назад
i wonder if the “zero-cost” constraint to the language design will cause the language low level api surface to eventually become very large
@pictureus
@pictureus 5 лет назад
I think this was mentioned by Alex Chrichton "RustFest Zürich 2017 - Tokio: How we hit 88mph by Alex Crichton" at around 19:30 forward
@wliaputs
@wliaputs 5 лет назад
Why create keywords when you can create a library using concept of monads like Haskell?
@KingButcher
@KingButcher 4 года назад
Thats what rust futures already do. You join asynchronous operations using .and_then() which is similar to >> or bind in haskell. async/await in rust is simply syntactic sugar around those combinators that also lets you use them on expression blocks. Similar to what the "do" keyword is in haskell as well.
@stevethepeeve4345
@stevethepeeve4345 5 лет назад
"Zero-Cost Async IO" for very specific definitions of "cost"...
Далее
"Type-Driven API Design in Rust" by Will Crichton
40:57
Et toi ? Joue-la comme Pavard ! 🤪#shorts
00:11
Просмотров 1,8 млн
🤘РОК или ПОП?💖
3:20:26
Просмотров 1,7 млн
Рыбачка
00:14
Просмотров 16 тыс.
RustConf 2023 - How Powerful is Const
22:58
Просмотров 13 тыс.
Considering Rust
1:03:57
Просмотров 189 тыс.
Rust's Journey to Async/Await
48:46
Просмотров 86 тыс.
Rust and RAII Memory Management - Computerphile
24:22
Просмотров 218 тыс.
Understanding Ownership in Rust
25:31
Просмотров 243 тыс.
PA-RISC рабочая станция HP Visualize
41:27