views:

100

answers:

1

I'm interesting in experience of others developers with Zlib, and compressing large files, and how it will depends on application processes, is that going to make application slower, or not, or will decrease any other application performance. If there is any other better solution shoot.

+1  A: 

Large is relative, but if you have a lot of server threads they will be using more CPU doing decompression of course. It depends on how many concurrent downloads of those files you have and what your servers can handle. Try to stress-test it and see how it performs.

Also if you can use zlib in a streaming mode with php that would probably help.

Sean A.O. Harney