User-Centric Feature Toggle

BIS
2 min readJan 18, 2020

--

In modern days of programming requirement changes continuously and in the industry, we replace with word called agile. To be agile one must be able to make continuous changes without impacting users. As we all know certain changes are expansive and require intense testings with Subject Matter Experts but we still want to continue with the normal development.

We require certain features to be user-specific or providing functionality to the least number of audience for an initial trial period. Feature Toggle facility can be used to restricting to specific users or group of users.

What does this mean?

We can develop a feature on a continuous basis without affecting the wider audience. Which will keep our Scrum Master and Product Owner happy?

How can we apply this in our software?

It can be done in a number of ways. In this article, we will simply do it through the command line as follows:

  • DFT_USERS=CLIENT_1,CLIENT_2
  • if (FT_USERS contains {CLIENT_ARRAY}) {
  • // DO client-specific code
  • } else {
  • // Do default implementation
  • }

The above concept is any programming language independent. As you can see with very little effort one can get a user-centric feature toggle.

Please visit the number of commercial products using Feature Toggle functionality.

Online Test Software

Exam Software

Examination Software

Question Bank Software

Online Assesment Software

Online Exam Software

Online Test System

Question Bank Software

Online Assessment System

Assessment Management Software

Multiple Choice Question Software

Examination Management Software

Exam Management Software

Examination Management System

Online Exam Management System

Online Examination System

Online Exam System

MCQ Software

Online Assessment Software

Exam System

Examination System

RHEED Software

MLM Software

Service Management Software

Online Timesheet Software

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

BIS
BIS

Written by BIS

Specialist in Cloud Native development

No responses yet

Write a response