📄️ Building and scaling feature flag systems
Feature flags, sometimes called feature toggles or feature switches, are a software development technique that allows engineering teams to decouple the release of new functionality from software deployments. With feature flags, developers can turn specific features or code segments on or off at runtime, without the need for a code deployment or rollback. Organizations who adopt feature flags see improvements in all key operational metrics for DevOps: Lead time to changes, mean-time-to-recovery, deployment frequency, and change failure rate.
📄️ Using feature flags at scale
“A feature flag is just an if statement,” you say. This is true in a way, but when your organization has thousands of developers, each managing dozens or hundreds of flags with complex targeting rules and audit trails across dozens of microservices-based applications, those if statements can quickly become complex. This is especially true if you don’t set up your system correctly in the first place.
📄️ Migrating from homegrown feature management solutions
Many large organizations have an existing feature management solution that they have outgrown and plan to migrate to a feature flag service.
📄️ A/B and multivariate testing
A/B testing is a type of randomized controlled experiment where you test two different versions of a feature to see which performs better. When testing more than two versions, it’s called multivariate testing. Coupled with analytics, A/B and multivariate testing help you gain deeper insights into your users and how you can serve them better.