I created solr index on my machine using
http://localhost:8983/solr/dataimport?command=full-import
Now i have to update index on each add / edit/ delete on the table that i used for indexing.
Please advice the best way of updating solr index.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Solr provides incremental-updates named delta-updates via the DataImportHandler:
http://wiki.apache.org/solr/DataImportHandler#Using_delta-import_command
But this might not be the fastest way if your index has many small and frequent changes which need to be available fast.