2014-06-04 19:29 GMT+02:00 Alejandro Santos <[email protected]>: > Yes, I am concerned about performance. I am still designing my application, > I haven't written any code yet. It is a custom TCP application and an > alternative I may be able to do is open several TCP ports and tell the > clients to which port to connect.
Honestly, don't write ugly code just due to your performance concerns. Instead, write cool code and trust libuv's performance (you will notice it anyhow when your code is done). BTW, the reason for many existing software to be multi-thread is that such a software MUST be multi-thread (or multi-process) as it uses blocking calls. Don't mix performance and "multi-thread or single-thread". -- Iñaki Baz Castillo <[email protected]> -- 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 http://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
