Comment on Sprockets: JavaScript dependency management and concatenation (SvN)parentComments−axod17yIt's be an interesting one to test, although I'd expect the gain in compression is worth it.eg gzip(concat(A, B)) compresses to a smaller file than gzip(A) + gzip(B)For example, if I take 20 js files from Mibbit and gzip them individually, total size is 47,890 If I concat then gzip, it's 42,681
Comments
It's be an interesting one to test, although I'd expect the gain in compression is worth it.
eg gzip(concat(A, B)) compresses to a smaller file than gzip(A) + gzip(B)
For example, if I take 20 js files from Mibbit and gzip them individually, total size is 47,890 If I concat then gzip, it's 42,681