Friday, January 30, 2015

Continuous Crawl Intervals

So this new feature in SharePoint 2013 sounds good, right? Ever wondered is it really continuous and how fresh really are your search results when using it? Here's the answer in maybe my shortest blog post:

  1. $ssa = Get-SPEnterpriseSearchServiceApplication  
  2. $ssa.GetProperty("ContinuousCrawlInterval")  

The default interval is 15 minutes. You can easily change that to anything else, say 20 in this example:

  1. $ssa = Get-SPEnterpriseSearchServiceApplication  
  2. $ssa.SetProperty("ContinuousCrawlInterval",20)  

No comments:

Post a Comment