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
Is there currently no way to delete a Go bloom filter? https://github.com/bitly/dablooms/blob/master/godablooms/dablooms.go#L44
Am I also correct in thinking this memory will never get GC'ed, because it's in C?
The text was updated successfully, but these errors were encountered:
Not explicitly, no. That destroy() method you linked to will execute when Go's garbage collector decides to clean up that object.
destroy()
When nothing references the bloom filter pointer it will (eventually) be GCd.
Sorry, something went wrong.
No branches or pull requests
Is there currently no way to delete a Go bloom filter?
https://github.com/bitly/dablooms/blob/master/godablooms/dablooms.go#L44
Am I also correct in thinking this memory will never get GC'ed, because it's in C?
The text was updated successfully, but these errors were encountered: