Hacker News new | ask | show | jobs
by cbono1 1839 days ago
In your comment here, what's the distinction of advanced vs. a regular feature flag?
1 comments

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.