The problem with leaving connections open is that there's a limit on how many you can have on the server... I think the author has committed self-DoS :) https://en.wikipedia.org/wiki/Slowloris_(computer_security)
Yep. Although with the right language, even on cheap hardware, that limit might be 1,000 or so.
You can't download this image
161–170 of 241 posts
Re: You can't download this image
#162When you usually try to download an image, your browser opens a connection to the server and sends a GET request asking for the image. I'm not a web designer, but that seems rather ass-backwards. I'm already looking at the image, therefore the image is already residing either in my cache or in my RAM. Why it is downloaded a second time instead of just being copied onto my drive?
I can't vouch for chromium-*, but my Firefox does NOT do that. I've just tested it.
Re: You can't download this image
#163Earlier quoted context omitted.
Yep. Although with the right language, even on cheap hardware, that limit might be 1,000 or so.
1000… pft.. just holding open a connection and sending on average a few bytes a second hardly costs anything and the memory requirements on eg Linux are minimal. You can easily do 100k or more with python and a few hundred megs of memory. Millions are doable with something a little less memory hungry or throwing more memory at it.
Re: You can't download this image
#164The problem with leaving connections open is that there's a limit on how many you can have on the server... I think the author has committed self-DoS :) https://en.wikipedia.org/wiki/Slowloris_(computer_security)
Re: You can't download this image
#165Earlier quoted context omitted.
1000… pft.. just holding open a connection and sending on average a few bytes a second hardly costs anything and the memory requirements on eg Linux are minimal. You can easily do 100k or more with python and a few hundred megs of memory. Millions are doable with something a little less memory hungry or throwing more memory at it.
Most programmers these days don't know what computers are capable of.
Re: You can't download this image
#166Is there some reason why that's an uninteresting exception?