Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

How to Improve Web Application Performance by Enabling Dynamic Compression for JSON and JavaScript

0.00/5 (No votes)
21 Nov 2014 1  
Learn how to configure dynamic compression in IIS 7.5 to improve performance

Introduction

We try to boost our website performance by doing several things like caching, bundling, minification and Image Sprites, etc. But we forget to do configuration for dynamic compression for our AJAX requests. Let’s see how we can achieve it.

To demonstrate it, I am using IIS 7.5. In IIS 7, you need to enable Dynamic compression. I am not going in that way.

IIS Configuration

Let’s open IIS7.5 and select server name. Then you will see Configuration Editor in right side pane. Click to open it.

Once Configuration editor opens, select the section as ‘system.webServer’ --> httpCompression by expanding tree.

After selecting, just open dynamicTypes as shown in screenshot.

Now you can see collection editor for dynamic compression. By default, you can see compression for text, message and JavaScript. If you don’t see, just add as we will do for JSON. Click ‘Add’ and enter given value application/json.

Same add application/json; charset=utf-8.

Now close window and click Apply right hand side as follows:

Reset IIS and test your app, see how much time dynamic compression can save for you. Time can be seen for Ajax request in chrome developer tool or Fiddler.

If you click on request, you can see compression as gzip.

Summary

In this tip, we saw how we can configure dynamic compression on IIS. It will improve performance for your HTTP calls.

Happy coding!!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here