1

我目前正在使用 Sitecore,我们在其中创建了一个“创建新内容”部分,它会打开一个弹出窗口,显示 8 个最常用的模板以及使用次数。

问题是,模板数量过多(目前最高超过11k)时,耗时过长。

这是我用来获取 8 个最常用模板的代码:

我从数据库中获取所有项目。

var allItems = db.GetItem("/sitecore/content").Axes.GetDescendants();

然后我得到了最常用的 8 个。

var mostUsedTemplates = allItems.GroupBy(x => x.TemplateID)
                .Select(x => new { TemplateID = x.Key, Count = x.Count() })
                .OrderByDescending(x => x.Count).Take(8);

我们已经实现了 Lucene,但我真的不知道如何使用它。

我尝试寻找获取所有模板的方法,对它们进行计数,然后找到最常用的 8 个,但我一无所获。

简而言之,我需要计算用于创建内容中的项目的所有模板,并恢复计数最高的 8 个。

任何帮助将不胜感激。谢谢。

对此进行扩展:这是我目前正在制作的配置。我正在尝试包含所有模板,并能够计算它们。

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<search>
  <configuration>
    <indexes>
      <index id="usage_template_count" type="Sitecore.Search.Index, Sitecore.Kernel">
        <param desc="name">$(id)</param>
        <param desc="folder">usage_template_count</param>
        <Analyzer ref="search/analyzer" />
        <locations hint="list:AddCrawler">   

        For what I understand, here is what I specify what to index.
        From what I read, I know how to include some templates, or excludes others, but no idea how to include ALL.
        Also don´t know if I have to set up something in the config to be able to count the results.

        </locations>
      </index>
    </indexes>
  </configuration>
</search>
</sitecore>
</configuration>   

再次感谢!

4

1 回答 1

7

首先,永远不要迭代或检索整个内容树并期望它执行。这不是一个合理的期望。

您可以在 lucene 中执行此操作,但它需要索引模板本身并添加一个包含模板实例计数的字段。(查看scSearchContrib以使这更容易。)但是,您需要计划完全重建此索引,因为模板项将永远不会被重新索引,除非它们本身发生变化。

Links DB 可能会为您带来更好的性能,因为那里应该包含对模板的引用。但是,您仍然需要遍历所有模板,并检查对每个模板的引用数。

无论使用哪种解决方案,我肯定仍然建议实施缓存层。

最后,为什么有必要动态地执行此操作?安装中最常用或最有用的八个模板会经常更改吗?为什么不为此在内容树的某处创建一个配置元素,并根据模板使用报告定期更新它?您可以使用Sitecore Powershell 控制台之类的工具来运行报告。如果您确实需要自动化,请编写一个 Sitecore Powershell 脚本来执行查询,然后自动更新您的配置元素。安排脚本每天运行。

于 2013-02-21T15:54:17.987 回答