MichaCo / DnsClient.NET

DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups
https://dnsclient.michaco.net
Apache License 2.0
781 stars 137 forks source link

Reduce allocations #216

Closed antonfirsov closed 6 months ago

antonfirsov commented 7 months ago

Fixes #213 by implementing both strategies suggested there.

The .NET Framework memory leak is worked around by adapting APM -> Task wrappers for async socket operations when targeting net472or netstandard2.0. (UdpClients implementation is doing the same.)

MichaCo commented 6 months ago

Changes look good to me. I'll test it more after merging.