i have a tipical solr stuff: need of indexing documents, only that my documents are related to the topics, not associated with them in advance… in OO paradigm this scenario would be so described:
class Document { (List of Topic) topics, ... attrs } ;
class Topic { (int) id, (String) name, ... attrs }
is there any way for indexing Topic independently from Document? (an update on topic, in this case is only for topic and not for all docs related with this topic)
considering that solr is focused on docs indexing…
thanks in advance,
Enzo
You can try the Solr Join feature, introduced as a part of the JIRA and available as a part for Solr 4.0 build only.
Can index topics and documents as seperate entities and use Solr Join to associate them.
Try applying the patch to the build you are using or use Solr 4.0 build.