Re: Fwd: advice about develop AbstractSolrEventListener.

2013-02-11 Thread Chris Hostetter
: 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

Re: Fwd: advice about develop AbstractSolrEventListener.

2013-02-06 Thread Miguel
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) *

Re: Fwd: advice about develop AbstractSolrEventListener.

2013-02-04 Thread Miguel
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

Re: Fwd: advice about develop AbstractSolrEventListener.

2013-01-31 Thread Miguel
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

Fwd: advice about develop AbstractSolrEventListener.

2013-01-30 Thread Miguel
Hi I have to developed a function that must comunicate with webservice and this function must execute after each time commits. My doubt; it's possible get that records had been updated on solr index? My function must send information about add, updated and delete records from solr index to