-
Notifications
You must be signed in to change notification settings - Fork 50
feat: Add FlagDefinitionCacheProvider interface #387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
6 files reviewed, no comments
cd2f61d to
e1c2266
Compare
e1c2266 to
c6c2f64
Compare
dmarticus
approved these changes
Dec 11, 2025
Contributor
dmarticus
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
two minor things, but generally this is a great abstraction
The defined types don't leave room for missing or optional keys. We'll use the types as they're defined.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Mirrors PostHog/posthog-js#2594 / https://posthog.com/tutorials/node-external-cache
This addition allows users to implement their own custom external caching solutions for local evaluation / flag definitions. Implementations would allow for distributed caching of flags definitions, such that one logical service can poll from a single coordinated leader, while other individual instances rely on cached flag definitions while evaluating flags locally.
Example code provided featuring an implementation for Redis, complete with coordination to poll from a single instance.