I have a custom ISearchableContentType
I'm wondering once I create new content of that type, how long will it take before it shows up in the search index?
I have a custom ISearchableContentType
I'm wondering once I create new content of that type, how long will it take before it shows up in the search index?
Yes, its correlates to that Id. Site searches also issues collapsed/grouped results which could be filtering out these results. To avoid this possibility will you add a field called "collapse" to the IndexFields list and set the value to typename and unique contentid. So, an example field value would be "WebContent:28c4b8f2-6f3a-4b95-aff4-df875968afd3".
Here is the Solr Doc I have being indexed now. Still not showing up from the top search bar though.
<result name="response" numFound="1" start="0" maxScore="113.34428">
<doc>
<str name="collapse">WebContent:de5dfe62-f627-4fb4-a59e-ba937b7c8171</str>
<arr name="roles">
<str>1</str>
</arr>
<str name="title">Jay Cutler</str>
<str name="content">Jay Cutler</str>
<str name="rawcontent">Jay Cutler</str>
<str name="id">de5dfe62-f627-4fb4-a59e-ba937b7c8171</str>
<str name="type">WebContent</str>
<str name="url">/jay-cutler</str>
<str name="contenttypeid">2da07dc7-f5f3-4f6f-8766-218a0153714e</str>
<double name="contentscore">0.0</double>
<arr name="category">
<str>WebContent</str>
</arr>
<long name="_version_">1660340289554874369</long>
<bool name="isapplication">false</bool>
<bool name="iscontainer">false</bool>
<date name="timestamp">2020-03-05T15:58:10.639Z</date>
<float name="score">113.34428</float></doc>
</result>
</response>