I am indexing some course data(id, name, summary) along with attachments associates with these courses. I am using Extract RequestHandler to index docs by passing literal fields.
now there are three conditions while indexing.
- A course may have multiple attachments.
- No attachments
- A course may have exact one attachment.
looking over the issue. Solr-php-client Extract method doesn't seems to be useful. So my question is
- how to index these binary files along with course data(one solr document) ?
- how to map multiple docs/pdf with unique course id ?
Thanks :)