如何使用Umbraco Examine将更新的内容放在搜索结果的顶部?

时间:2018-10-04 08:08:48

标签: c# umbraco examine

我们有一个在Umbraco CMS中创建的网站,并且我正在开发网站搜索功能。网站上有一个称为“新闻”的部分,其中会定期发布更新。在列出新闻版块(以及其他页面)的搜索结果时,我想在搜索结果中更早地展示最新内容,例如如果有人要搜索“考试结果”,我想将2018年创建的匹配新闻页面早于2017年创建的页面,以此类推。是否有提高查询时间或索引时间的方法,以使最新页面得到提升?

以下是我到目前为止编写的代码:

var page = 1;
var pageSize = 5;

if (Request.QueryString["q"] != null)
    searchQuery = Request.QueryString["q"];

if (Request.QueryString["page"] != null)
    Int32.TryParse(Request.QueryString["page"], out page);

ISearchResults searchResults = null;
BaseSearchProvider searcher = ExamineManager.Instance.SearchProviderCollection["ExternalSearcher"];

var headerFields = new[] { "contentTitle", "metaTags", "metaDescription", "nodeName" };
var contentFields = new[] { "contentDescription", "mainBody" };
var criteria = searcher.CreateSearchCriteria(IndexTypes.Content, BooleanOperation.Or);
var searchTerm = string.IsNullOrEmpty(Request["q"]) ? string.Empty : Request["q"];

if (searchTerm != string.Empty)
{
    searchTerm = searchTerm.MakeSearchQuerySafe();

    if (searchTerm.Length > 0)
    {
        searchTerm = searchTerm.Trim();
    }

    var examineQuery = criteria.GroupedOr(headerFields, searchTerm.Boost(100));
    examineQuery.Or().GroupedOr(contentFields, searchTerm.Boost(50));

    if (searchTerm.Contains(" "))
    {
        examineQuery.Or().GroupedOr(headerFields, searchTerm.RemoveStopWords().Split(' ').Select(x => x.MultipleCharacterWildcard().Value.Boost(10)).ToArray());
        examineQuery.Or().GroupedOr(contentFields, searchTerm.RemoveStopWords().Split(' ').Select(x => x.MultipleCharacterWildcard()).ToArray());
    }

    searchResults = searcher.Search(examineQuery.Compile(), maxResults: pageSize * page);
}

1 个答案:

答案 0 :(得分:2)

由于其他人可能会遇到相同的问题,并通过搜索找到了该问题,因此我将发布自己问题的答案。

我编写了两个事件处理程序,如下所示:

  1. 只要在Umbraco CMS中发布了新内容,就会触发检查索引重建。
  2. 当“检查索引器”遇到文档类型别名为“ newsArticle”时,将文档相对于上次更新日期降低。

事件处理程序代码如下:

public class ExamineEvents : Umbraco.Core.ApplicationEventHandler
{
    protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
    {
        var indexer = (UmbracoContentIndexer)ExamineManager.Instance.IndexProviderCollection["ExternalIndexer"];
        indexer.DocumentWriting += Indexer_DocumentWriting;
        Umbraco.Core.Services.ContentService.Published += ContentService_Published;
    }

    private void ContentService_Published(Umbraco.Core.Publishing.IPublishingStrategy sender, Umbraco.Core.Events.PublishEventArgs<Umbraco.Core.Models.IContent> e)
    {
        ExamineManager.Instance.IndexProviderCollection["ExternalIndexer"].RebuildIndex();
    }

    private void Indexer_DocumentWriting(object sender, DocumentWritingEventArgs e)
    {
        //if it is a 'news article' doc type then > BOOST it DOWN - the older the article, the lower the boost value 
        if (e.Fields.ContainsKey("nodeTypeAlias") && e.Fields["nodeTypeAlias"] == "newsArticle")
        {
            float boostValue = 1f;
            const string umbDateField = "updateDate";
            if (e.Fields.ContainsKey(umbDateField))
            {
                DateTime updateDate = DateTime.Parse(e.Fields[umbDateField]);
                var daysInBetween = Math.Ceiling((DateTime.Now - updateDate).TotalDays + 1); // +1 to avoid 0 days
                boostValue = (float) (1 / daysInBetween);
            }
            e.Document.SetBoost(boostValue);
        }
    }
}