Description
Hi,
I'm currently working on a nutch-solr integration based on http://wiki.apache.org/nutch/RunningNutchAndSolr .
I changed what is proposed in this page a bit so that I don't have to patch Nutch anymore - I just have to add a jar containing a custom Indexer in nutch/lib.
The only remaining problem which forced me to patch nutch is the following step:
9. Edit nutch-trunk/src/java/org/apache/nutch/indexer/Indexer.java changing scope on LuceneDocumentWrapper from private to protected
Could we consider changing the visibility of LuceneDocumentWrapper to protected directly in Nutch trunk so that we could inherit from Indexer to create our own ones without patching nutch?
I attached the (trivial...) patch to do so.
Thanks.