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
Hello.
I just saw the usage of this library in Seq's tutorial: https://blog.datalust.co/serilog-tutorial/ (check for Event type enrichment).
When I created the enrichment listed there I notice the Murmur32 class is a IDisposable and Seq's example does't dispose it.
IDisposable
Should I create this instance every time I need to hash something and then dispose it or I should have a global static instance?
Thanks.
The text was updated successfully, but these errors were encountered:
Near all .net HashAlgorithm are not thread-safe. best create one instance for each execution or loop
Sorry, something went wrong.
No branches or pull requests
Hello.
I just saw the usage of this library in Seq's tutorial: https://blog.datalust.co/serilog-tutorial/ (check for Event type enrichment).
When I created the enrichment listed there I notice the Murmur32 class is a
IDisposable
and Seq's example does't dispose it.Should I create this instance every time I need to hash something and then dispose it or I should have a global static instance?
Thanks.
The text was updated successfully, but these errors were encountered: