featuretoggle Questions
6
There exists quite a bit of discussions on feature flags/toggles and why you would use them but most of the discussion on implementing them center around (web or client) apps. If your product/artif...
Adelaadelaida asked 2/8, 2018 at 15:37
2
This problem confuses me the most when thinking about using feature toggles in applications. Most of the features require some changes in database. How then feature flag can be implemented to be ab...
Marshy asked 9/12, 2019 at 22:49
1
Solved
I have been using 503 Service Unavailable or down for maintenance.
However some http client libraries i.e. axios treat 503 as retriable error.
It makes sense to retry it if the response is prod...
Sentient asked 18/2, 2020 at 15:28
2
Solved
We have some Automation tests using the selenium web driver which are great and provide a really good regression pack.
The problem is now we have feature toggles in our code. So I need to say ignor...
Fruitcake asked 16/11, 2018 at 13:30
1
Solved
With .NET Core, in Startup.cs you have access to IHostingEnvironment from which you can get the EnvironmentName which corresponds to the value of the ASPNETCORE_ENVIRONMENT environment variable set...
Linnie asked 14/8, 2018 at 18:59
2
Solved
I have a requirement to implement feature toggling in my current project. I have no idea how to implement it from scratch in Java.
I have read the theory behind the feature toggling at various art...
Macgregor asked 29/1, 2018 at 15:36
2
The company that I work for has gone off the deep end with feature toggles-configuration keys that turn on/off particular behavior based on certain conditions. Martin Fowler actually refers to them...
Harden asked 1/9, 2015 at 20:12
4
Solved
I have a Spring Boot application with a lot of @Component, @Controller, @RestController annotated components. There are about 20 different features which I would like to toggle separatly. It is imp...
Allophane asked 24/8, 2016 at 14:2
1
How does one go about testing when using feature toggles? You want your development computer to be as close to production as possible. From videos I watched, feature toggles are implemented in a wa...
Heliozoan asked 14/4, 2014 at 2:0
1
Our clients get to choose when to upgrade. So, my team literally has to maintain and support dozens of versions of our software product. As you can imagine that results in a lot of branching and me...
Calibre asked 22/3, 2012 at 2:24
2
Solved
I just stumbled across the concept of feature flagging, and a popular open source Java lib for this called Togglz, which quotes a Martin Fowler blog post:
The basic idea is to have a configurati...
Grivet asked 21/11, 2014 at 15:25
3
Recently I've read a number of articles talking about the idea of using "feature toggles" or "gatekeepers" to keep features hidden from users until the development is done. Facebook and Flickr both...
Mimosaceous asked 22/8, 2011 at 21:29
3
Solved
What are "Feature Toggles" and "Feature Branches" and what's the difference between them?
What are the pros and cons? Why is one better than the other?
I found some articles on Google regarding t...
Communal asked 17/10, 2013 at 18:16
6
Solved
How can I feature toggle java annotations?
Simple feature toggle:-
if(toggle enabled) do x
Spring allows the use of "profiles" to toggle beans.
I use these and they are fine but I'd like to togg...
Jylland asked 22/8, 2012 at 2:17
1
Feature toggling works perfectly for a new functionality - in most cases the functionality should be simply surrounded with some UI container that will be visible or not based on feature configurat...
Ideally asked 23/2, 2012 at 12:23
2
Solved
I want to use the feature-toggle paradigm. Specifically, I want my Spring contexts to contain different bean definitions based on a toggle.
I've come across this: http://robertmaldon.blogspot.com...
Recurrent asked 9/10, 2011 at 9:4
2
I have read a lot about feature toggles but have no practical experience of using them. What tools and techniques do people recommend for effective management of feature toggles?
I imagine the sim...
Bushing asked 12/8, 2011 at 10:8
1
© 2022 - 2024 — McMap. All rights reserved.