Bundling: It's a simple logical group of files that could be referenced by unique name and being loaded with one HTTP requestor. Minification: It's a process of removing unnecessary whitespace, line break and comments from code to reduce its size thereby improving load times.
Question:how to implement Cache Busting technique of "File path versioning" or "File name versioning" for asp.net mvc site?
Description:I have studied about cache busting techniques and came to know that there are mainly three such techniques. -File name versioning (e.g. style.v2.css) -File path versioning (e.g. /v2/style.css) -Query strings (e.g. style.css?version=2) Currently I am using the query string for cache busting which is implemented by default in mvc's Bundling and Minification but the query string technique is causing performance issues, so I need to implement any of the other two technique. Need help in this regard!!!
Posted by: Umer khan | Posted on: Aug 24, 2018
Question:How to asynchronously load some of my javascript files while using MVC 4 bundling and minification ?
Description:In my asp.net mvc 4 project there are some independent javascript files, i want to load them asynchronously for the site's performance aspect. So I have following two question regarding this, 1) how to load some of my bundled js files asynchronously ? 2)Does it effect my site's performance as well ?
Posted by: Khalid Abbas | Posted on: Oct 20, 2017