Grokking Modern API Design Interview
Vote

0% completed

Interview Question: Design a Feature Flag API

The interview question is:

Design a Feature Flag API.

The pressure is enormous read volume plus a change that must reach every connected client within seconds.

A feature flag lets a team change application behavior without shipping new calling code. That sounds like a key-value lookup. The lookup shape is the mistake.

If a screen checks forty flags and the API exposes one call per flag, the screen makes forty network round trips. If those calls happen at different times, the screen may combine values that were never one valid configuration

.....

.....

.....

Like the course? Get enrolled and start learning!