Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
In 7:
_indexer = (UmbracoContentIndexer)ExamineManager.Instance.IndexProviderCollection["ExternalIndexer"]; _indexer.RebuildIndex();
What is the equivalient in 8?
Hi Shane,
Please try.
private readonly IndexRebuilder _indexRebuilder; public SearchService(IndexRebuilder indexRebuilder) { _indexRebuilder = indexRebuilder; } public void RebuiltIndex(string Index) { _indexRebuilder.RebuildIndex(Index); }
Cheers,
Shaishav
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
What is the equivalent of RebuildIndex in Umbraco 8?
In 7:
What is the equivalient in 8?
Hi Shane,
Please try.
Cheers,
Shaishav
is working on a reply...