InterviewSolution
| 1. |
What Are Feature Toggles? |
|
Answer» Feature toggles are a TECHNIQUE where both VERSIONS of your feature are included in the same code base, but are surrounded by logic to execute on or the other based on external FACTORS such as a property value or database SWITCH. This is a useful technique to separate the deploy from usage in any SETUP, multiple server groups, single group and legacy monoliths. Feature toggles are a technique where both versions of your feature are included in the same code base, but are surrounded by logic to execute on or the other based on external factors such as a property value or database switch. This is a useful technique to separate the deploy from usage in any setup, multiple server groups, single group and legacy monoliths. |
|