What is a “feature flag”?

后端 未结 12 602
天涯浪人
天涯浪人 2020-11-30 17:32

High Scalability mentions feature flags here:

5 things toxic to scalability, \"5. Lack of Feature Flags\"

What exactly are feature flags?

12条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-30 18:12

    Feature Flag is a technique to turn some functionality of your application off, via configuration, without deploying new code.

    Feature flags play a key part in CI scheme where features are constantly being deployed but not necessarily "released" into production.

    More info here:

    • http://code.flickr.com/blog/2009/12/02/flipping-out/

    -- EDIT:

    Feature Flags java implementation.

提交回复
热议问题