How to implement Solr into Sitecore

前端 未结 2 1889
独厮守ぢ
独厮守ぢ 2021-02-09 00:01

I have to implement Solr index into Sitecore and I would like to know what is the best approach?

I looked at following approaches:

  1. Capture publish end even
2条回答
  •  佛祖请我去吃肉
    2021-02-09 00:29

    In addition to the already posted answer (which I think is a good way to do things) I'll share how we do it.

    We basically just took a look at the Sitecore database crawler and decided to do things kind of like how it was doing it.

    We utilize a significantly modified version of the Custom Item Generator to facilitate mapping between strongly typed objects and an object that has properties that correspond to our Solr schema. For actual communication with Solr we use SolrNet.

    The general idea is that we loop through all the items (starting with the site root) recursively and map them to the appropriate type based on its template. Then we go through an indexing process for that item (some items need to index multiple documents to Solr in our implementation).

    This approach is working very well for us except I will note that because we are indexing everything at once, it tends to introduce a slight bit of lag time between publish and the site reflecting any changes made to the index. One oversight we made in the beginning but will be working to fix soon is that we don't have an "unpublished" index (meaning we need to publish the site to see updates). It doesn't impact our solution that much really, but I can definitely see where it would others, so keep that in mind.

    We didn't particularly want to get into the deletion of items from the index so we do the indexing as a publish:end event.

    I hope this additional insight helps you. As far as I know there's not a whole lot of information out there about this specific combination of products, but I can tell you it's definitely possible and quite useful.

提交回复
热议问题