Building an asynchronous ZooKeeper client in Rust

Profile Picture
- Published on Jul 1, 2018🌏 Public

In this stream, we're implementing an asynchronous ZooKeeper client library in Rust using the tokio crate and futures. The goal of this session is mainly to write the necessary internals, including connection setup, the ZooKeeper protocol, with the ultimate goal of being able to call some ZooKeeper function. See also some of the discussion on https://twitter.com/Jonhoo/status/100.... We'll tackle higher-level ZooKeeper functions in a later stream. This means that this stream is primarily for those who want to learn about asynchronous programming in Rust, with a particular focus on asynchronous networking. It should be accessible for most intermediate Rust programmers though, and the goal is for us all to learn together! This video is intended for users who are already somewhat familiar with Rust, but who want to see something larger and more involved be built. You can see earlier related videos in this playlist: https://www.youtube.com/playlist?list.... If you enjoyed this, go follow me on Twitter, or on Patreon at https://www.patreon.com/jonhoo to see announcements for new videos! There will be several more videos that either cover new topics (see Twitter) or that complete ones we've started in the past (like async-ssh: https://www.youtube.com/watch?v=RBQwZ...) The code we ended up with is available here: https://github.com/jonhoo/tokio-zooke...