Ask HN: Why not Tar?
Most web server configurations include gzip compression to send files to the client. Wouldn't giving servers the ability to tar package cachable static files so that all those files came down in one request improve the user experience further?
Any ideas why this hasn't ever been done?
5 comments
[ 4.9 ms ] story [ 32.2 ms ] threadGzip is compression tool.
One difference between them: an archive tool would e.g. concatenate files just once but a compression tool would compress files individually.
I suspect not all that much. You'd trade request overhead for untar overhead.