Rust Asynchronous Programming with Tokio // Advent of Code 2019 - Day 07
We convert our threaded solution for Day 7 to an asynchronous solution using Tokio! I think rust has done a great job in this respect and we'll talk about how to do it and where is works well.
Source: https://github.com/icub3d/intcode.rs
Problem: https://adventofcode.com/2019/day/7
Epoll for memories: https://en.wikipedia.org/wiki/Epoll
Tokio: https://tokio.rs
Tokio Tutorial: https://tokio.rs/tokio/tutorial
Alice's post on Async: https://ryhl.io/blog/async-what-is-blocking/
0:00 Introduction
2:15 History and epoll
15:26 Async and Tokio Introduction
31:36 Code Review
55:51 Conclusion