<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/sources/bytebytego/best-of/2025/09" -->

---
title: Best ByteByteGo posts — September 2025 | daily.dev
description: The most upvoted ByteByteGo posts from September 2025, curated by the daily.dev community.
canonical: https://daily.dev/sources/bytebytego/best-of/2025/09
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:url: https://daily.dev/sources/bytebytego/best-of/2025/09
og:type: website
og:site_name: daily.dev
og:title: Best ByteByteGo posts — September 2025 | daily.dev
og:description: The most upvoted ByteByteGo posts from September 2025, curated by the daily.dev community.
og:image: https://media.daily.dev/image/upload/s--VAY5ToZt--/f_auto/v1724209435/public/daily.dev%20-%20open%20graph
---

# Best of ByteByteGo — September 2025

1. 1  
[](https://daily.dev/posts/how-grab-built-an-authentication-system-for-180-million-users-uhhmau0mr "How Grab Built An Authentication System for 180+ Million Users")  
Article  
![Avatar of bytebytego](https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/35be29234ee14d01a9cd049c52e12753)ByteByteGo · 1y  
How Grab Built An Authentication System for 180+ Million Users  
Grab transformed their fragmented authentication system serving 180+ million users by adopting OpenID Connect (OIDC) and implementing Dex, an open-source federated identity provider. The solution unified authentication across internal and external applications, replacing multiple custom OAuth implementations with a standardized approach. Key features include token delegation for service-to-service communication, multi-IdP failover for high availability, and single sign-on capabilities. This centralized system improved security, reduced administrative overhead, and provided a consistent user experience across Grab's ecosystem of ride-hailing, payments, and delivery services.  
133  
1
2. 2  
[](https://daily.dev/posts/how-grab-s-migration-from-go-to-rust-cut-costs-by-70--v3arjekxa "How Grab’s Migration from Go to Rust Cut Costs by 70%")  
Article  
![Avatar of bytebytego](https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/35be29234ee14d01a9cd049c52e12753)ByteByteGo · 50w  
How Grab’s Migration from Go to Rust Cut Costs by 70%  
Grab successfully migrated their Counter Service from Go to Rust, achieving a 70% cost reduction through improved resource efficiency. While latency remained similar, the Rust version required only 4.5 CPU cores compared to Go's 20 cores for handling 1,000 requests per second. The migration involved careful library selection, rebuilding internal tools like configuration systems, and overcoming challenges with Rust's borrow checker and async concurrency model.  
94  
3
3. 3  
[](https://daily.dev/posts/how-netflix-tudum-supports-20-million-users-with-cqrs-qeleudnav "How Netflix Tudum Supports 20 Million Users With CQRS")  
Article  
![Avatar of bytebytego](https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/35be29234ee14d01a9cd049c52e12753)ByteByteGo · 1y  
How Netflix Tudum Supports 20 Million Users With CQRS  
Netflix redesigned their Tudum platform architecture to support 20 million users by replacing a traditional CQRS implementation with RAW Hollow, an in-memory object store. The original design used Kafka and Cassandra with caching layers, causing delays in editorial previews due to eventual consistency. By embedding RAW Hollow directly into microservices, they eliminated external datastores and reduced page construction time from 1.4 seconds to 0.4 seconds while enabling near-instant editorial previews. The compressed in-memory approach stores three years of data in just 130MB while maintaining strong consistency options for critical workflows.  
87  
1
4. 4  
[](https://daily.dev/posts/how-anthropic-built-a-multi-agent-research-system-iloxgbc2h "How Anthropic Built a Multi-Agent Research System")  
Article  
![Avatar of bytebytego](https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/35be29234ee14d01a9cd049c52e12753)ByteByteGo · 52w  
How Anthropic Built a Multi-Agent Research System  
Anthropic built a multi-agent research system using an orchestrator-worker pattern with a Lead Researcher agent coordinating specialized subagents and a Citation Agent for accuracy. The system outperformed single-agent setups by 90% through parallel processing and dynamic adaptation, though it consumes 15x more tokens. Key engineering principles include proper prompt design, delegation strategies, effort scaling, and parallelization. Production challenges involve managing stateful agents, debugging non-deterministic behavior, and handling deployments without breaking running tasks.  
74

[See all ByteByteGo archives](/sources/bytebytego/best-of)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://daily.dev/sources/bytebytego/best-of/2025/09#page","url":"https://daily.dev/sources/bytebytego/best-of/2025/09","name":"Best ByteByteGo Posts — September 2025","description":"The most upvoted ByteByteGo posts from September 2025, curated by the daily.dev community.","isPartOf":{"@type":"WebSite","url":"https://daily.dev"}},{"@type":"ItemList","@id":"https://daily.dev/sources/bytebytego/best-of/2025/09#items","numberOfItems":4,"itemListElement":[{"@type":"ListItem","position":1,"url":"https://daily.dev/posts/how-grab-built-an-authentication-system-for-180-million-users-uhhmau0mr","name":"How Grab Built An Authentication System for 180+ Million Users"},{"@type":"ListItem","position":2,"url":"https://daily.dev/posts/how-grab-s-migration-from-go-to-rust-cut-costs-by-70--v3arjekxa","name":"How Grab’s Migration from Go to Rust Cut Costs by 70%"},{"@type":"ListItem","position":3,"url":"https://daily.dev/posts/how-netflix-tudum-supports-20-million-users-with-cqrs-qeleudnav","name":"How Netflix Tudum Supports 20 Million Users With CQRS"},{"@type":"ListItem","position":4,"url":"https://daily.dev/posts/how-anthropic-built-a-multi-agent-research-system-iloxgbc2h","name":"How Anthropic Built a Multi-Agent Research System"}]},{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Sources","item":"https://daily.dev/sources"},{"@type":"ListItem","position":3,"name":"ByteByteGo","item":"https://daily.dev/sources/bytebytego"},{"@type":"ListItem","position":4,"name":"Best of","item":"https://daily.dev/sources/bytebytego/best-of"},{"@type":"ListItem","position":5,"name":"September 2025"}]}]}
```

