|
|
|
|
|
by quesera
637 days ago
|
|
> Feature flags can be checked dozens of times per request My strategy for resolving this is to fetch the flag value once, but to store it in the request object, so that a) you never have to take the expensive lookup hit more than once per request, and b) there's no risk of an inconsistent value if the flag is updated mid-request. |
|