Rust
71 posts

When Your Actor Cluster Grows Up, It Needs Sharding
How do you manage 100,000 Actors across 10 machines? Let’s talk about consistent hashing
I Told Old Zhang His Rust Service Might Be 10x Slower - He Almost Spit Coffee in My Face
Rust service suddenly 10x slower? The problem might be hiding in Serde macros. This article walks through a real story to help you identify and fix performance issues caused by Serde serialization.

Why Rust Makes C++ Programmers Lose Sleep at Night: Lessons from My Migration Journey
A C++ developer with 5 years of experience shares real insights from switching to Rust. From memory safety to concurrency, these 10 features completely changed my perspective on systems programming

Village Gossip Protocol! Rust Actor Node Discovery & Gossip Implementation
Manual node configuration? That’s Stone Age! Modern distributed systems know how to find friends, chat, and gossip automatically

I Fired My Entire Node.js Stack — Rust Rebuilt It in 3 Weeks (The Ugly Truth)
API latency dropped from 850ms to 8ms, monthly costs from $12,000 to $900. Sounds great? The price was three months of hell and a team on the verge of collapse. This is a real backend migration story.

Hands-On Code! Perfect WebSocket + Actor System Implementation - I Pulled Another All-Nighter
Last article too theoretical? Here’s hardcore code to get your Rust distributed system running

I Built a Distributed Actor System in Rust and Even Surprised Myself
WebSocket + Actor Model = Making Multiple Machines Think Like One Brain, This Combination is Insane

I Thought Rust Was Over-Engineering—Until I Saw the Production Logs
A 2 AM production incident made me rethink Rust. From 8 crashes per hour to zero crashes—this isn’t about language wars, it’s about trust.

Rust File Distribution & Hot Reload: Managing Your Code Like a Delivery Network Pro
Learn Rust file distribution, config synchronization, and hot code reloading through vivid delivery service analogies - manage code deployment like running a delivery empire

Rust in Action: Sending Messages to Remote Nodes with WebSocket Clients
Learn how to implement WebSocket clients in Rust for building distributed Actor systems with remote messaging capabilities. Complete with code examples and practical project demos to master Rust async programming and network communication.
