Azure / DotNetty

DotNetty project – a port of netty, event-driven asynchronous network application framework
Other
4.09k stars 977 forks source link

Memory leaks occur when applying for and releasing buffers in different threads #624

Open StayGoldTY opened 6 months ago

StayGoldTY commented 6 months ago

In the business thread, because I use the Task.Run thread pool, even if WriteAndFlushAsync is called, the memory is not actually released. How can I release the memory in the above situation normally?

StayGoldTY commented 6 months ago

I use Unpooled for memory allocation everywhere, but the above problems still exist