Hacker News new | ask | show | jobs
by that_guy_iain 1836 days ago
Seems like you need advanced feature flags.
1 comments

In your comment here, what's the distinction of advanced vs. a regular feature flag?
Regular feature flag is just on and off. When you start getting into the advance you can change it for user groups, specific users, timable so it's only enabled for a timeframe, only on a specific env. The possibilities are endless.

I make the distinction so people don't just think they can put a single if statement in and be able to handle this sort of scenario.

Got it - that clarifies it.