Skip to content
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

Improve the Search in-memory evaluator. Implement a custom iterator and reduce allocations. #422

Closed
Tracked by #427
fiseni opened this issue Nov 9, 2024 · 0 comments · Fixed by #443
Closed
Tracked by #427
Assignees
Milestone

Comments

@fiseni
Copy link
Collaborator

fiseni commented Nov 9, 2024

The current SearchMemoryEvaluator implementation is as follows.

public IEnumerable<T> Evaluate<T>(IEnumerable<T> query, ISpecification<T> specification)
{
    foreach (var searchGroup in specification.SearchCriterias.GroupBy(x => x.SearchGroup))
    {
      query = query.Where(x => searchGroup.Any(c => c.SelectorFunc(x).Like(c.SearchTerm)));
    }

    return query;
}

This looks relatively simple, but there are a lot of hidden allocations. Moreover, the number of allocations is not constant, and it depends on the size of the input collection.

We need to implement a custom iterator and come up with an allocation-free GroupBy implementation. We may keep the search expressions sorted by search group, and then slice to get the groups.

Breaking Changes:
The SearchEvaluator was renamed to SearchMemoryEvaluator. It was causing unnecessary name collisions with EF plugin evaluators.

@fiseni fiseni mentioned this issue Nov 9, 2024
21 tasks
@fiseni fiseni self-assigned this Dec 20, 2024
@fiseni fiseni added this to the 9.0 milestone Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant