improve getLiveDocs() performance
---------------------------------

                 Key: LUCENE-3500
                 URL: https://issues.apache.org/jira/browse/LUCENE-3500
             Project: Lucene - Java
          Issue Type: Improvement
            Reporter: Yonik Seeley
            Priority: Minor


On segmentReader, liveDocs is volatile because they used to be loaded on demand.
This no longer appears to be the case... liveDocs are always loaded up front.
This also means that getLiveDocs() can never fail (even after close), and we 
can remove the ensureOpen call.
Minor optimizations, but volatile reads still do prevent optimizations across 
that boundary.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to