usbmuxd
usbmuxd copied to clipboard
Could it be possible to make it multi-threading to handle socket connections
I found usbmuxd only use main thread to handle all data streams in main_loop
. This may be a big perf problem when there are many devices connected at the same time. So could it possible to make it multi-threading, or why not? Thanks. @FunkyM
可能是因为使用者并不会一次连接太多的设备或创建太多的连接吧。
多种复用技术比多线程处理能力更好,nginx就是使用了多种复用技术的。