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.
In our company, we tried to get involved in the hot method for a batch request, and our request began to be answered by clients with a timeout error. We carefully studied the query logic inside the repository and it turns out that inside the batch evaluates each flag in the loop and executes a query to the database each time, which increased our query execution time. We started thinking towards flipt-client-side, but we were afraid to include the ffi utility in the legacy php project. As a result, we decided to completely import the evaluation logic into our project in the go lang. Yes, it duplicates the logic of the main server, but I want to share the work done. Perhaps someone will find it useful