this post was submitted on 20 Jul 2025
420 points (88.2% liked)
Memes
11449 readers
1389 users here now
Post memes here.
A meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular phenomenon or theme.
An Internet meme or meme, is a cultural item that is spread via the Internet, often through social media platforms. The name is by the concept of memes proposed by Richard Dawkins in 1972. Internet memes can take various forms, such as images, videos, GIFs, and various other viral sensations.
- Wait at least 2 months before reposting
- No explicitly political content (about political figures, political events, elections and so on), !politicalmemes@lemmy.ca can be better place for that
- Use NSFW marking accordingly
Laittakaa meemejä tänne.
- Odota ainakin 2 kuukautta ennen meemin postaamista uudelleen
- Ei selkeän poliittista sisältöä (poliitikoista, poliittisista tapahtumista, vaaleista jne) parempi paikka esim. !politicalmemes@lemmy.ca
- Merkitse K18-sisältö tarpeen mukaan
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Does uploading slow down downloading? I thought the two processes were totally decoupled. How does this work?
Yes, it can slow down downloading.
(The explanation below is simplified quite a bit)
When you download the server that is sending you the file doesn’t just dump all the data onto the network in one go. They don’t know how fast you can receive and it’s not like the routers along the way will buffer large amounts of data. It needs to figure out how fast it can send.
So how does it do this? The sender sends a few packets of data and then waits for the receiver to acknowledge reception before it sends more data. Now the acknowledgment message isn’t that big so when downloading the amount of data sent back (uploaded) is just a tiny fraction of the amount downloaded, so that usually doesn’t matter.
The problem occurs when your local network is much faster than your internet upload and your router isn’t smart about which packets to send first. A good router will not allocate all the spots in the outgoing queue to the connection doing the large upload and instead will make sure the connection with smaller amounts of outgoing data will get a fair turn.
If your router isn’t smart like that the ‘data received, please send more’ packets may be delayed because of all the other outgoing packets and thus slow down the download.
If your router's cpu is locked 100% because of an upload it can't handle additional download, probably. This could be improved with a more powerful cpu or a more efficient process of sorting out up- and downloads. At least that's what I got from the original comment. I'm not a networking expert (far from it) so take this with a big grain of salt.
On the ISP end sometimes non symmetrical equipment is used, especially on copper coaxial which are used much like "wired wifi" in that data is transported by encoding it into frequency bands. Each frequency band can only be used up OR down per cable, so ISPs tend to dedicate more frequency bands to the downlink than to the uplink.
And as others mentioned, the commonly used TCP protocol will slowly ramp up bandwidth by having the server send a burst of packets, the client acknowledges, then the server sends more packets faster and the client acknowledges again, and once the client and server starts noticing packet losses it backs down and resend the lost packets a bit slower, until the connection bandwidth is stable. If you fail to send acknowledgements the server will back down on the connection speed even if you're able to receive at full speed