Caching Sitecore应用程序缓存

Caching Sitecore应用程序缓存,caching,sitecore,sitecore8,Caching,Sitecore,Sitecore8,最近,我安装了Sitecore 8.0 问题是速度慢。每当我在编辑模式下重新加载页面时,页面速度太慢。 下面是Chrome开发工具中的控制台,最后一条消息是“ApplicationCache未声明” 似乎我需要在Sitecore中声明ApplicationCache。我该怎么办 ==更新=== 通过启用应用程序缓存,我可以看到缓存正常工作。但是,缓存加载后,SPEAK仍然调用所有SPEAK工具功能区 为什么?????????????如何使Sitecore停止加载这些文件? 默认情况下禁用we

最近,我安装了Sitecore 8.0

问题是速度慢。每当我在编辑模式下重新加载页面时,页面速度太慢。 下面是Chrome开发工具中的控制台,最后一条消息是“ApplicationCache未声明”

似乎我需要在Sitecore中声明ApplicationCache。我该怎么办


==更新===

通过启用应用程序缓存,我可以看到缓存正常工作。但是,缓存加载后,SPEAK仍然调用所有SPEAK工具功能区

为什么?????????????如何使Sitecore停止加载这些文件?

默认情况下禁用web应用程序缓存。要启用它,请执行以下操作:

添加以下字符串

manifest="/sitecore/shell/client/Sitecore/ExperienceEditor/Html5AppCache.ashx"
指向项目或页面当前布局内的HTML标记,例如,
\Website\sitecore\shell\client\Speak\Layouts\Layouts\SpeakLayout.cshtml
基本布局文件

移动到“\Website\sitecore\shell\client\Speak\Layouts\Layouts\SpeakLayout.cshtml”,然后进行如下更新:

<html data-sc-app manifest="/sitecore/shell/client/Sitecore/ExperienceEditor/Html5AppCache.ashx">

==Update===

另一方面,您可以禁用SPEAK UI extender。 转到
/website/App\u Config/Include/Sitecore.MvcExperienceEditor.Config
文件,启用
SheerUI功能区
并禁用
SPEAK UI功能区

<!-- The SheerUI-based Experience Editor ribbon.  -->

<processor type="Sitecore.Mvc.ExperienceEditor.Pipelines.RenderPageExtenders.RenderPageEditorExtender, Sitecore.Mvc.ExperienceEditor"></processor>
<processor type="Sitecore.Mvc.ExperienceEditor.Pipelines.RenderPageExtenders.RenderPreviewExtender, Sitecore.Mvc.ExperienceEditor"></processor>
<processor type="Sitecore.Mvc.ExperienceEditor.Pipelines.RenderPageExtenders.RenderDebugExtender, Sitecore.Mvc.ExperienceEditor"></processor>


<!-- The SPEAK-based Experience Editor ribbon
<processor type="Sitecore.Mvc.ExperienceEditor.Pipelines.RenderPageExtenders.SpeakRibbon.RenderPageEditorSpeakExtender, Sitecore.Mvc.ExperienceEditor"></processor>
-->


即使禁用基于语音的功能区,也不会有任何UI更改。

还有另一种解决方法。我更新了。