cancel
Showing results for 
Search instead for 
Did you mean: 

Significance of Index atomic=true in SOLR ?

deepak1987
Star Contributor
Star Contributor
We know that by default, indexing for all properties are:


<index enabled="true">
         <atomic>true</atomic>
         <stored>false</stored>
         <tokenised>true</tokenised>
</index>

Here, Atomic="true" means the property is indexed in the transaction. If not, the property is indexed in the background.

And SOLR does not perform in-transaction indexing. So, What is the significance for keeping default value for Atomic="true" ? ?

For Lucene, this atomic attribute is required but does it have any importance for SOLR ? ?
2 REPLIES 2

afaust
Legendary Innovator
Legendary Innovator
Hello,

no, it has no significance for SOLR. The default value is there to allow the continued use of Lucene with its old behavior as the search subsystem when customers / users do not want to or cannot switch to SOLR.

Regards
Axel

deepak1987
Star Contributor
Star Contributor
Hi Axel,
First of all Congrats for ACA & ACE. I want to appear for ACE. Do you have any material or any links would be of great help!!.
And thanks a lot for this information. Smiley Happy