Tagged articles

binary-serialization

3 articles · Page 1 of 1
samdeepthink
samdeepthink
Aug 19, 2026 · Backend Development

When to Replace REST with gRPC? A Practical API Selection Framework

The article examines the trade‑offs between REST + JSON and gRPC for microservice communication, outlining REST’s simplicity and maturity versus gRPC’s binary efficiency, strong contracts, and streaming support, and provides a four‑point decision framework to help teams choose the right protocol for internal or external APIs.

API DesignProtocol SelectionREST
0 likes · 11 min read
When to Replace REST with gRPC? A Practical API Selection Framework
Random Bulletin
Random Bulletin
Jul 9, 2026 · Backend Development

From HTTP to Private RPC: Why Million‑QPS Systems Need Protocol‑Level Optimization

A large‑scale load test revealed that 70% of latency was spent packing and unpacking HTTP messages, prompting an analysis of why early‑stage HTTP is convenient, how text‑based formats and connection handling become costly at high frequencies, and why binary serialization, private protocols, and connection reuse are essential for reaching ten‑million QPS.

RPCbinary-serializationconnection-reuse
0 likes · 13 min read
From HTTP to Private RPC: Why Million‑QPS Systems Need Protocol‑Level Optimization
Data STUDIO
Data STUDIO
Nov 17, 2025 · Backend Development

Why ditch JSON? 4 binary formats that can make your API up to 5× faster

The article explains why JSON can become a performance bottleneck in high‑throughput APIs and compares four binary serialization formats—Protocol Buffers, FlatBuffers, MessagePack, and CBOR—showing benchmark results, trade‑offs, and a practical migration checklist.

API performanceCBORFlatBuffers
0 likes · 10 min read
Why ditch JSON? 4 binary formats that can make your API up to 5× faster