Configuring Solr for Event-specific functionalities

The 'Event' content-type contains a field named 'eventSchedule'.We need to ensure that this field is indexed by Solr before we can use event-specific widgets.

One possible way to configure Solr is to edit the schema.xml and add the following two lines :

        
        <field name="eventschedule_start_tdate" type="tdate" indexed="true" stored="true" multiValued="true"/>
        <field name="eventschedule_end_tdate" type="tdate" indexed="true" stored="true" multiValued="true"/>
        
      

After modifying schema.xml, it is necessary to restart the application server and regenerate solr index.