Socket Buffer Size and Performance

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
We want to set our application's socket buffer size from 1500 bytes to 65536 bytes to be generically handle message packet which has larger than 1500 bytes. In this case, will it affect the performance? or it will just be redundant memory?
socket
add a comment |Â
up vote
0
down vote
favorite
We want to set our application's socket buffer size from 1500 bytes to 65536 bytes to be generically handle message packet which has larger than 1500 bytes. In this case, will it affect the performance? or it will just be redundant memory?
socket
1
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
We want to set our application's socket buffer size from 1500 bytes to 65536 bytes to be generically handle message packet which has larger than 1500 bytes. In this case, will it affect the performance? or it will just be redundant memory?
socket
We want to set our application's socket buffer size from 1500 bytes to 65536 bytes to be generically handle message packet which has larger than 1500 bytes. In this case, will it affect the performance? or it will just be redundant memory?
socket
socket
asked Aug 31 at 2:48
Bryan Fok
1063
1063
1
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42
add a comment |Â
1
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42
1
1
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f465904%2fsocket-buffer-size-and-performance%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
Are you sure that your current socket buffer size is 1500 bytes only? This would be unusual low. It sounds more like the MTU for ethernet - which is unrelated to the socket buffer size. And even with an MTU of 1500 larger messages can be transferred since they get fragmented for transfer and reassembled again.
â Steffen Ullrich
Aug 31 at 4:42