bestit / flagception-bundle

Feature flags on steroids!
MIT License
210 stars 42 forks source link

A/B testing #11

Closed migo315 closed 7 years ago

migo315 commented 7 years ago

A BucketTestStash for A/B testings.

migo315 commented 7 years ago

Instead of a new Stash ... let's merge it to config. Example:

best_it_feature_toggle:
    features:      
        feature_123:
            active: true

        feature_abc:
            percentage:
               percentage: 50 // Value between 0 - 100 in percent 
               cookie: FeatureCookieName // Name for the cookie which save the current feature state
               lifetime: 3600 // Lifetime of cookie
migo315 commented 7 years ago

Currently not needed