We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Zf uses an arena allocator for speed, and does not free memory during the application's runtime.
Each time the filter function is run, a new slice of Candidates is allocated, meaning that memory use grows as zf is run.
Even though zf is intended to be a short-lived program, we should still use as little memory as possible.
The text was updated successfully, but these errors were encountered:
c2a36ba
No branches or pull requests
Zf uses an arena allocator for speed, and does not free memory during the application's runtime.
Each time the filter function is run, a new slice of Candidates is allocated, meaning that memory use grows as zf is run.
Even though zf is intended to be a short-lived program, we should still use as little memory as possible.
The text was updated successfully, but these errors were encountered: