I need to Send & Recv at the same time, which should be the best:
1 thread handling send & recv with non-blocking socket or 2 threads with One handling blocking recv() + one handling send()
Or is there another option?
I am expecting to have up to about 50 2 way connections.. Which result in 50 thread in option1, and 100 thread in option 2.
Thanks