-1
votes
For my app, how many threads would be optimal?
Threading isn't necessary in this case. Your program is I/O bound rather than CPU bound. The networking part would probably be better done using select() on the so …
