Blog Posts

Recent posts

ZooKeeper - Lock Support

less than 1 minute read

The following pseudo logic shows how ZooKeeper is supporting a lock. ```java void acquire_lock() { while (true) { if create(‘f’, ephem=true) { re...

Rust - All About Pin

less than 1 minute read

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...