09-05-2019, 10:18 AM
All HTML, JavaScript and CSS served by IntraWeb are compressed by default, unless you disabled it.
Check:
ServerController.Compression
Ideally you should have:
AllowDeflate, AllowGZip = True
Enabled = True
Level = 1 (min) to 9 (max)
PreCompress = True
MinSize = 512 (less than that won't make much difference anyway)
You can switch Level to 9 and see if it makes any difference. It will certainly increase the CPU consumption at server side, but if this is not a problem, then you can try it.
Check:
ServerController.Compression
Ideally you should have:
AllowDeflate, AllowGZip = True
Enabled = True
Level = 1 (min) to 9 (max)
PreCompress = True
MinSize = 512 (less than that won't make much difference anyway)
You can switch Level to 9 and see if it makes any difference. It will certainly increase the CPU consumption at server side, but if this is not a problem, then you can try it.

