-
-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send and receive buffer sizes #435
Comments
If you are using UDP or any other datagram protocol without delivery check - if your packet will be lost you will loose 1M of data or 50k of data that must be sent again? It's better to loose less. |
Thanks for your input. I'm using only TCP (no UDP).
Thanks |
If you have a large number of peers and high bandwidth, use high buffer sizes as that reduces the disk seeking / connection polling. In low-memory, high-bandwidth case you still want decent buffer sizes. It is however the number of upload/downloading peers you want to reduce. |
I came across this post about
network.send_buffer.size
andnetwork.receive_buffer.size
: http://www.torrent-invites.com/showthread.php?t=192492&p=1289478&viewfull=1#post1289478It states that we should use really small receive buffer size.
Since my networking knowledge is pretty limited, can somebody shed some light on these settings?
Thanks
The text was updated successfully, but these errors were encountered: