In Umbraco CMS. Is there a way to test and see how longs it takes to pull nodes of a certain DocType in XSLT? Is there an XSLT timer or anything that can do this.
We are trying to test what is faster to use. Razor or XSLT for our needs. In Razor we can get the time because it is essentially C# but if XSLT is rendered faster, we would like to use that instead.
If you append a querystring of
?umbdebugshowtrace=trueto your page you will get a stack trace of the various processes on your page – so you will be able to see when your xslt processes.You could also use this guide to write into your umbracolog and use that as a rough timer (obviously some lag in the write).