Problem with umbraco.MacroEngines.DynamicNode.ExecuteExtensionMethod
Hi,
We are having an issue with a fresh umbraco installation. We have built several apps over Umbraco CMS and it's the first time we are having this issue.
I profiled the app using JetBrains DotTrace and I found that the method:
umbraco.MacroEngines.DynamicNode.ExecuteExtensionMethod takes like 5 seconds to execute.
Each request take about 20 seconds to run and 80% of the timespan is due to this method.
As you can see, the method is executed about 200 times.
There is alos a .ToList() that takes about 5 seconds too.
Problem with umbraco.MacroEngines.DynamicNode.ExecuteExtensionMethod
Hi,
We are having an issue with a fresh umbraco installation. We have built several apps over Umbraco CMS and it's the first time we are having this issue.
I profiled the app using JetBrains DotTrace and I found that the method:
umbraco.MacroEngines.DynamicNode.ExecuteExtensionMethod takes like 5 seconds to execute.
Each request take about 20 seconds to run and 80% of the timespan is due to this method.
As you can see, the method is executed about 200 times.
There is alos a .ToList() that takes about 5 seconds too.
Anyone has an hint about why it takes so long?
Thanks,
Charles
By the way this is a umbraco v 4.7.1.1 (Assembly version: 1.0.4393.24044) installation
Charles, did you make any extension method calls to your dynamic objects in the razor script by any chance? Avoid such calls if possible ...
is working on a reply...