: I found a solution. I am going to Configured Update Request Processors,
: that I have seen in: http://wiki.apache.org/solr/UpdateRequestProcessor
Sorry for the late reply, but yes -- an UpdateProcessor seems like the
best place to hook in custom functionality if you need to know about
ind
Hi
I found a solution. I am going to Configured Update Request
Processors, that I have seen in:
http://wiki.apache.org/solr/UpdateRequestProcessor
If I developed a custom class extend UpdateRequestProcessorFactory,
I'll have access to :
* SolrQueryRequest req. (Object request)
* Sol
Hi everybody
Please, I need to know if anybody has done similar something.
I have to developed a notification when commit event hapened on Solr
server, but I have to know updated records for creating correctly the
notification. Develop java class extends of AbstractSolrEventListener, I
don't
Hi
After to study apache solr documentation, I think only way to know
update records (modify, delete an insert actions) is developed a class
extends org.apache.solr.servlet.SolrUpdateServlet.
In this class, I can access updated record information go into Apache
solr server.
Somebody can co