> > Is Solr like a RDBMS in that I can have multiple programs querying and > updating the index at once, and everybody else will see the updates after a > commit, or do I have to something explicit to see others updates? > Yes, everyone gets to search on an existing index unless writes to the index (core) are committed. None of the searches would fetch uncommitted data.
Does it matter whether they're using the web interface, SolrJ with a > CommonsHttpSolrServer or SolrJ with a EmbeddedSolrServer? > Absolutely not. All of these are multiple ways to access the Solr server; underlying implementation of searching the index and writing to the index does not change in either case. Cheers Avlesh On Wed, Aug 26, 2009 at 10:44 PM, Paul Tomblin <ptomb...@xcski.com> wrote: > Is Solr like a RDBMS in that I can have multiple programs querying and > updating the index at once, and everybody else will see the updates > after a commit, or do I have to something explicit to see others > updates? Does it matter whether they're using the web interface, > SolrJ with a > CommonsHttpSolrServer or SolrJ with a EmbeddedSolrServer? > > > -- > http://www.linkedin.com/in/paultomblin >