Upgrade to Pro — share decks privately, control downloads, hide ads and more …

From Monthly Meltdowns to Daily Deploys: Taming...

From Monthly Meltdowns to Daily Deploys: Taming Legacy ColdFusion with Feature Flags - CFCamp 2026

These are the slides from the talk given at CFCamp 2026 in Munich (Germany) on June 19, 2026.
The demo files are available on https://github.com/WeAreNorth/presentation-feature-flags.
---

Stop letting legacy “spaghetti code” dictate your release schedule. Learn how we used Feature Flags to transform a fragile ColdFusion app into a high-velocity machine—moving from stressful monthly deployments to confident daily releases using CFML, Unleash, and instant “kill switches.”

Every ColdFusion developer has been there: you’re tasked with updating a legacy codebase where a single change in a CFC might unexpectedly break a scheduled task or a reporting module miles away. The result? “Deployment Anxiety” and a release calendar that moves at a snail’s pace.

In this session, I will share our team’s journey of breaking free from the “Big Bang” release cycle using Feature Flags. We will walk through the evolution of our strategy—starting with a simple, homegrown CFML database toggle and eventually scaling to a sophisticated implementation using Unleash.

Key takeaways from this session include:

- The “Safety Net” Strategy: How to wrap high-risk code in flags to ensure you can “kill” a failing feature in milliseconds without a rollback.
- Testing in Production: Why the best staging environment is actually production (if you have the right toggles in place).
- The Homegrown vs. Pro Debate: A look at our migration from a custom FeatureService.cfc to an enterprise flag management platform.
- Gradual Rollouts: How to release a new module to 5% of your users to monitor performance before a global launch.
- Practical CFML Examples: See code snippets of how to implement flag checks within your logic and how to handle “flag debt” so your code stays clean.

Whether you are maintaining a 15-year-old legacy app or building a modern CFML API, you’ll leave this session with a roadmap to release faster, safer, and with significantly less stress.

Avatar for Guust Nieuwenhuis

Guust Nieuwenhuis

June 24, 2026

More Decks by Guust Nieuwenhuis

Other Decks in Programming

Transcript

  1. About me Guust Nieuwenhuis Managing Partner @ We Are North

    Full Stack Web Wizard Lead Dev for Masa CMS Drums/Percussion Mountainbiker CFCamp 2026 2
  2. Who this is for Legacy CF maintainers Modern CFML/API teams

    Anyone carrying release risk CFCamp 2026 3
  3. Core transformation Before: deploy only when we can survive blast

    radius After: deploy when code is ready, control risk at runtime CFCamp 2026 4
  4. Deployment stress loop Fear → bigger batches → riskier releases

    → more fear Photo by Bradyn Trollip on Unsplash CFCamp 2026 9
  5. Opening incident Database lock bottleneck Timeouts in production Bad user

    experience Photo by iSawRed on Unsplash CFCamp 2026 10
  6. Phase 1: boolean flags in CFML Local and simple No

    external dependencies <cfif flag eq true> #new# <cfelse> #old# </cfif> CFCamp 2026 12
  7. Phase 2: env-driven flags Flags in AWS Parameter Store Operationally

    better than hard-coded booleans Still deployment-coupled CFCamp 2026 14
  8. Phase 3: session-level tester control Enable per tester session Validate

    high-risk paths early Reduce coordination delays CFCamp 2026 16
  9. Migration decision framework Stay homegrown if scope is narrow Migrate

    when targeting/governance/scale demand it Use fit, not hype, as decision rule CFCamp 2026 19
  10. Why Unleash Open, flexible, team-friendly model Good fit for our

    constraints OSS available; we use hosted Not positioned as "the one true tool" CFCamp 2026 20
  11. Runtime fetch architecture CFML backend evaluates flags Frontend consumes coordinated

    decisions Unleash provides runtime state Fallback defaults protect behaviour CFCamp 2026 21
  12. Demo: Unleash in action Open app Flip flag in Unleash

    Refresh app See behaviour change without redeploy CFCamp 2026 22
  13. Progressive rollout pattern 5% users → observe 25% users →

    validate metrics 100% rollout when confidence is high Photo by Imagine Buddy on Unsplash CFCamp 2026 23
  14. Tenant-specific production fix Deploy fix behind a feature flag Enable

    only for affected tenant Tenant confirms the fix Roll out to all users CFCamp 2026 24
  15. Demo: Unleash targeting strategies Progressive rollout strategy in Unleash Tenant-specific

    targeting strategy Move from limited scope to broader rollout CFCamp 2026 25
  16. XSS refactor story Multi-sprint security refactor Shipped behind one governed

    flag Incremental validation before global enable CFCamp 2026 26
  17. Results: confidence first 1) Confidence up 2) Release frequency up

    3) Failure impact down 4) Lead time down Photo by Luke Helgeson on Unsplash CFCamp 2026 29
  18. Governance contract Decide in refinement: flag or no flag Flag

    type Naming convention Shared ownership (Dev + BA) Tech lead oversight Cleanup cadence CFCamp 2026 32
  19. Lifecycle example Create flag + removal ticket Monitor behaviour and

    outcomes Remove flag when stable CFCamp 2026 33
  20. Anti-patterns to avoid No owner No expiry Permanent "temporary" flags

    Scattered checks in business logic Photo by Jon Tyson on Unsplash CFCamp 2026 35
  21. First-week action Pick one risky code path Wrap it in

    a feature flag Assign owner + expiry today CFCamp 2026 36
  22. One more thing: AI-assisted coding needs feature flags even more

    AI-generated code can vary in quality Ship behind flags while validating behaviour Keep rollback path and feature flag mandatory Photo by Igor Omilaev on Unsplash CFCamp 2026 37
  23. Inspiration and further reading Ben Nadel's Feature Flags book Ben's

    blog posts on practical CFML usage Unleash docs for runtime patterns CFCamp 2026 38
  24. Q&A Who here already uses feature flags? Any story where

    something went wrong and flags might have helped? Any questions? CFCamp 2026 39
  25. Taming Legacy ColdFusion with Feature Flags From Monthly Meltdowns to

    Daily Deploys Contact me www.wearenorth.eu [email protected] https://www.linkedin.com/in/guustnieuwenhuis/ CFCamp 2026 40