2
4 Comments

Feature flags

Anyone know of a good solution to turn on/off features? Typically I use configs, but it requires a code/config push.

on August 27, 2019
  1. 1

    @susnata I am developing a platform for Feature Flag Management. With support for Projects, Environments, Flags, Remote Flags, AB Tests, Segments, and Users.

    Request access:
    https://www.producthunt.com/upcoming/upstamps

  2. 1

    You can store the feature flag state in some persistent datastore and periodically load it into memory every minute to control your business logic. Have a basic CRUD app to update the values in the datastore.

    1. 1

      Would you use a cloud-based solution instead?

      1. 1

        I might, but I don't have a need for feature flags at the moment.