Kentico CMS 6.0 Developer's Guide

Code minification and compression

Code minification and compression

Previous topic Next topic Mail us feedback on this topic!  

Code minification and compression

Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic!  

An important factor that influences the performance of a website is the size of code resources, which are requested by the client browser when it renders a page. The most significant among these are CSS stylesheets and JavaScript source files, which may in some cases reach sizes that considerably impact page load time.

 

Kentico CMS has two types of built‑in functionality that can be used to optimize the performance of requests for the above mentioned resources:

 

Code minification - removes all unnecessary characters from the code that are not required by the browser to correctly process the resource. This includes white spaces, line break characters, comments, bookmarks etc. The behavior of a minified resource remains exactly the same as the original and it can immediately be handled by the browser, without any additional steps. Minified code is generally difficult to read (for humans) and is therefore unsuitable for debugging.

Resource compression - encodes the data of the resource so that its size is reduced. In order for compression to be applied, minification must also be enabled for resources of the given type. When the client browser receives a compressed resource, it must first decompress the data. All browsers officially supported by Kentico CMS should be able to correctly decompress files. In cases where the client cannot process compressed data, the unmodified resource is sent instead.

 

Reducing the size of requested resources saves bandwidth and improves the response time of your website. Minification can decrease the size of a resource by approximately 20–40%, depending on the code of the given object. If compression is also used, resources can be reduced to roughly 30% of their original size.

 

Please note that these reductions are only applied to external resources stored individually in the file system or database. Inline code inserted into the HTML markup of pages is not affected.

 

Code minification and compression can be enabled or disabled globally for all sites in Site Manager -> Settings -> System -> Performance.

 

devguide_clip1682

 

The minification or compression process slightly increases the server CPU load and may also cause a short time delay. To counter this issue, the server only performs minification/compression once per resource (when it is requested for the first time) and stores the results in the application's cache. When a given resource is requested, the appropriate transformed version is taken from the cache. Both compressed and uncompressed versions of resources are cached, so they are readily available even for clients without compression support.

 

Additionally, client‑side browser caching can be used, which means that resources have to be reloaded from the server only if the cache expires or the content of the resource is outdated. Client caching of minifiable resources specifically can be enabled or disabled by setting the CMSAlwaysCacheResources key, which can be added into the appSettings section of your web.config file, for example:

 

<add key="CMSAlwaysCacheResources" value="false"/>

 

All of the mentioned functionality is automatically ensured by the ~/CMSPages/GetResource.ashx handler, which manages resource requests according to the specified settings. If minification is enabled, CSS and JavaScript requests generated by the system use this handler. If you need to manually write resource requests in your code, the following URL parameters can be used with the handler to specify which resource should be loaded:

 

stylesheetname - used to request a CSS stylesheet from the database. The code name of the requested stylesheet must be entered as the value of the parameter.
URL example: http://<domain>/CMSPages/GetResource.ashx?stylesheetname=corporatesite

 

transformations, layouts, templates, webparts, webpartlayouts, containers - used to request the internal stylesheets of the corresponding type of page components. The code names of the given components must be entered as the value of the parameter, separated by semicolons (if multiple component stylesheets are requested). Please see CSS stylesheets and design -> CSS for page components for additional information.
URL examples:
http://<domain>/CMSPages/GetResource.ashx?containers=blackbox;orangebox
http://<domain>/CMSPages/GetResource.ashx?transformations=CMS.News.Preview

 

stylesheetfile - used to request static CSS resources from the file system. The relative path of the requested .css file must be entered into the parameter.
URL example: http://<domain>/CMSPages/GetResource.ashx?stylesheetfile=/app_themes/default/cmsdesk.css

 

scriptfile - used to request static JavaScript resources from the file system. The relative path of the requested .js file must be entered into the parameter.
URL example: http://<domain>/CMSPages/GetResource.ashx?scriptfile=/cmsscripts/cmsedit.js

 

 

 

Requests with minification disabled

 

If minification is disabled, the system generates requests with a direct URL (for JavaScript files) or using the ~/CMSPages/GetCSS.aspx system page (for CSS stylesheets).

 

Requests with this URL format are always supported, but they do not perform minification or compression of resources.

 

 

GZip compression of page output

 

It is also possible to enable GZip compression of the output code of all pages rendered by Kentico CMS. This can be done either by adding the following key into the appSettings section of your web.config file:

 

<add key="CMSAllowGZip" value="true" />

 

or by enabling the Enable GZip compression option in Site Manager -> Settings -> System -> Performance.

 

devguide_clip1782