Combining with sitecore MVC

I have implemented the code here:

http://jockstothecore.com/bundling-with-sitecore-mvc/comment-page-1/#comment-6521

It works great.

I just have a few questions.

I want to know if there is a performance limitation in the code above as the code uses Sitecore.Mvc.Pipelines.Loader.InitializeGlobalFilters. When does InitializeGlobalFilters run? Called every time the page is loaded? Or does it only run once per app?

I have already searched the internet and also tried to find an answer in the sitecore SDK but cannot find an answer.

Please let me know if this is the correct approach or if there is a better way to do it.

Thank,

PNOY2015

+3


source to share


1 answer


InitializeGlobalFilters

the processor is part of the sitecore pipeline initialize

.

It is registered in the file /App_Config/Include/Sitecore.Mvc.config

.



This means that it is called only once when applications are launched.

+4


source







All Articles