On Fri, Sep 9, 2016 at 2:58 AM, kang joni <[email protected]> wrote: > I have single uv_loop which maintain many number client connection http > requests. Why default uv_loop do not reclaim free memory after many number > closed client connection, I was write small http server which handle only > post request btw. whether the way a loop for each new connection from the > client is an efficient way to avoid garabage collection from libuv default > event loop?
Libuv doesn't perform garbage collection. It's written in C, not a language traditionally known for its strong GC support. It sounds like you are not cleaning up resources properly but without more details it's hard to say. -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
