Reputation: 1969
Well I was looking to my current zipping code and then I came up with the question, is there any way that I can make it zip faster? I used this code: Zip Code I changed the Buffer to a bigger number, but nothing changed.
Upvotes: 0
Views: 908
Reputation: 14160
Most time in zipping process is spend in deflate algorithm implementation. Lowering compression level will speedup things, but make output larger.
Upvotes: 2