This question is locked. New answers and comments are not allowed.
In the default configuration, the JQuery files are not compressed when transmitted.
Even when I modified the Defaults to compress by default, they were not being compressed.
It turns out that compression only is meaningful if there is also a combine so the .axd is called, and hence the HttpHandler.
However, understanding this, it is possible to reduce your payload by quite a bit, 170KB -> 55KB.
Furthermore, if the JQuery and JQueryUI .js files were combined, then there would be a reduction of the overhead for the second load.
Great work!!!! Some very interesting ideas and implementations. I look forward to the next release
Matthew Dennis
Even when I modified the Defaults to compress by default, they were not being compressed.
It turns out that compression only is meaningful if there is also a combine so the .axd is called, and hence the HttpHandler.
However, understanding this, it is possible to reduce your payload by quite a bit, 170KB -> 55KB.
Furthermore, if the JQuery and JQueryUI .js files were combined, then there would be a reduction of the overhead for the second load.
Great work!!!! Some very interesting ideas and implementations. I look forward to the next release
Matthew Dennis