|
|
|
|
|
by londons_explore
2052 days ago
|
|
The bloom filter seems like the obvious solution! I even spent the best part of a week back in 2017 trying to build a bloom filter into Chrome's HTTP cache so each connection could send to the server a tiny filter of the resources already cached, and then the server could send back a package of "everything needed to render the page you have requested". Turns out the HTTP cache is complex so I gave up. If fully implemented, it ought to be able to cut render times dramatically, and to eclipse the performance benefit of cdn's (where the main benefit is reducing latency for static assets). There are potential privacy concerns, but no moreso than first party cookies. |
|