ZooKeeper - Lock Support
The following pseudo logic shows how ZooKeeper is supporting a lock. ```java void acquire_lock() { while (true) { if create(‘f’, ephem=true) { re...
The following pseudo logic shows how ZooKeeper is supporting a lock. ```java void acquire_lock() { while (true) { if create(‘f’, ephem=true) { re...
C++ lock free programming in Youtube video https://www.youtube.com/watch?v=qdrp6k4rcP4
Most common misconception on Rust programming language. One of favorite explanation is about static lifetime.
Another good resource to learn about Rust async/await with future.
Excellent explanation about pin API in Rust. 3 hours long video but it’s worth to watch all to understand how async and await are working in Rust with Future...