Posts tagged: optimizing
Most of the bytes associated with a webpage are images. A site that has a lot of small elements in separate files requires a lot of separate requests. And for small elements, a significant portion of that traffic is overhead.
I have built a Windows application to combine images into a single file and output CSS to use it.
In a world where CLR and JIT are generating native code for our desktop apps on the fly and horribly inefficient interpreted languages are serving our web content, both server-side and client-side, Intel and AMD folks must think our cheese slipped off our crackers.
The final verdict: SSE2 is the best option. It offers performance between 150% and 388% of the CRT strlen function. 32-bit CRT and libc strlen are quite slow and the 64-bit strlens are about twice as fast.