Feature flags are something I often use but never really gave much thought about it until this new project I'm working on started.
I usually implement it with lots of keys in my web.config file but this approach has two major drawbacks:
- When changing a value inside web.config the application pool is restarted - This can be a problem in a heavy access environment
- Having too many keys in the web.config file is confusing and can get pretty messy
What's the best way to overcome these problems?