Y
Hacker News
new
|
ask
|
show
|
jobs
by
nullindividual
960 days ago
How would you outcompete major CDNs/existing caching schemes already being paid for?
1 comments
shanebellone
960 days ago
They don't reduce request count. For example, Chrome only allows 6 concurrent connections (requests).
If you load 10 images in 1 request, you've reduced network latency and avoided the connection limit.
link
dave4420
960 days ago
Does that limit still apply with HTTP 2 and HTTP 3?
link
shanebellone
960 days ago
Yes, but multiplexing does minimize the problem. You could multiplex batched requests for hundreds of resources with my strategy.
link
If you load 10 images in 1 request, you've reduced network latency and avoided the connection limit.