惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
罗磊的独立博客
M
MIT News - Artificial intelligence
G
Google Developers Blog
V
V2EX
D
Docker
博客园_首页
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
博客园 - 司徒正美
J
Java Code Geeks
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
B
Blog RSS Feed
博客园 - 【当耐特】
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why I Stopped Using Singletons (And How It Saved Our Arch...
Utkuhan Akar · 2026-05-16 · via DEV Community

Let’s be completely honest with ourselves. We’ve all been there. You are building a system, you need an object to be accessible from everywhere—a game manager, an API client, or a configuration service—and a voice whispers in your ear: "Just make it a Singleton. It’s clean, it’s fast, and Instance.DoSomething() is right there."

It feels like a superpower. Until the project scales.

Last sprint, we were adding automated tests to our core modules, and guess what happened? Our test suite started failing randomly. Not because the logic was wrong, but because our "convenient" Singletons were leaking state between tests like a broken pipeline.

That was the moment I said: "Okay, the honeymoon is over. We need a real architectural strategy here."

Here is how we moved away from global state tight-coupling, and why this shift is a complete win-win for both codebase health and team velocity.

The Inciting Incident: The High Cost of "Global" Convenience
From a business perspective, code quality is directly tied to maintenance costs. If changing a feature in Module A breaks Module B because they secretly share a global instance, your development velocity plummets.

When you use a classic Singleton, you are essentially hiding dependencies. Look at this approach:

// The "Convenient" Trap
public class PlayerController {
    public void TakeDamage(int amount) {
        // Hiding the dependency inside the method. 
        // As you know, code review is going to be lively when the Tech Lead sees this.
        GameManager.Instance.ReduceScore(amount); 
    }
}

Enter fullscreen mode Exit fullscreen mode

Why this status quo wasn't enough:

  1. Zero Testability: You can't mock GameManager.Instance easily. If you want to test PlayerController in isolation, you are forced to bring the entire game state with you.

  2. Hidden Coupling: Components look independent on the outside, but under the hood, they are tightly coupled.

  3. Concurrency Nightmares: (And yes, we learned this the hard way during multi-threading experiments) when two threads try to orchestrate state updates on a single instance simultaneously... well, let's just say my coffee consumption doubled that day.

The Pivot: Embracing Explicit Dependency Injection (DI)
We decided to put on our "Lead Architect" hats and refactor the core communication layer. The goal was simple: No more hiding. If a class needs a service to function, it must demand it explicitly through its constructor.

Here is the modular framework we moved towards:

// Step 1: Define the boundary via an Interface
public interface IGameManager {
    void ReduceScore(int amount);
}

// Step 2: Inject the dependency explicitly
public class PlayerController {
    private readonly IGameManager _gameManager;

    // The intent is now clear, self-documenting, and honest.
    public PlayerController(IGameManager gameManager) {
        _gameManager = gameManager ?? throw new ArgumentNullException(nameof(gameManager));
    }

    public void TakeDamage(int amount) {
        _gameManager.ReduceScore(amount);
    }
}

Enter fullscreen mode Exit fullscreen mode

Pro Tip (The "Oops" Moment): When we first started refactoring, we tried to build our own custom DI container from scratch because, hey, how hard could it be? (Classic engineer over-optimization reflex, right?). It ended up being a memory-leaking monster. We quickly pivoted, deleted that boilerplate code, and integrated a lightweight container/service provider. Lesson learned: utilize battle-tested architectural patterns instead of reinventing the wheel.

The Decision Matrix: Trade-offs Matter
When you are pitching an architectural shift to stakeholders or tech leads, you don't just say "it feels cleaner." You present the trade-offs. Here is how the matrix looked for us:

Business Impact & Takeaways
At the end of the day, high-quality engineering must translate into a high-quality product. By introducing strict separation of concerns and explicit dependency orchestration, we achieved three things:

Onboarding Velocity: New developers can look at a class constructor and immediately understand its bandwidth and requirements without digging through thousands of lines of code.

Flawless Test Pipelines: Our CI/CD pipeline runs unit tests in parallel now. No shared state, no flaky test results. Just green checkmarks.

Production Peace of Mind: We can now swap implementations (e.g., changing a local save system to a cloud-based one) by modifying a single line in our composition root, rather than refactoring 50 different files.

If your codebase is currently slightly on fire because of global states, take a deep breath. Stop writing features for a second, define your system boundaries, and start decoupling. Your future self (and your tech lead) will thank you.

What about you? What is your go-to strategy for handling global state when a project starts outgrowing its initial design? Let’s discuss in the comments below!