I read http://wiki.apache.org/solr/UpdateXmlMessages , but i did not get what does it mean by updating solr index. does it mean that we can update index via query?? it means we can add or delete a doc for which we do not have/have data in database, but we can have index for that.
closed as not a real question by Joshua Nozzi, Jarrod Roberson, Software Monkey, Mat, Dori Jul 14 '11 at 7:42
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
It means you can add, update and delete documents from the Solr index. If you couldn't do this Solr would be pretty useless...
No, queries are safe, readonly operations. They never change the index.
Adding or deleting documents in Solr has nothing to do with records in your database. Solr is in principle independent of relational databases. It doesn't really care where data comes from or whether the data in the index matches the data you have in your database. |
|||
|
|