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?
However, in the document that is in Solr, I'm not seeing them...When I search for a piece of Telligent content I see this
<arr name="roles"> <str>3</str> <str>4</str> <str>14</str> <str>15</str> <str>16</str> <str>81</str> <str>95</str> </arr>
Added this to my Class as well
public int[] GetViewSecurityRoles(Guid contentId)
{
List<int> roleIds = new List<int>();
// Add the Everyone Role
roleIds.Add(1);
return roleIds.ToArray();
}