Steven Bethard created LUCENE-4368:
--------------------------------------

             Summary: make sentinel object in HitQueue a singleton?
                 Key: LUCENE-4368
                 URL: https://issues.apache.org/jira/browse/LUCENE-4368
             Project: Lucene - Core
          Issue Type: Improvement
          Components: core/search
    Affects Versions: 4.0-BETA
            Reporter: Steven Bethard


Via jvisualvm, I see that one of my Lucene processes is spending a lot of time 
in HitQueue.getSentinelObject. That's a very simple method that currently looks 
like:

  protected ScoreDoc getSentinelObject() {
    return new ScoreDoc(Integer.MAX_VALUE, Float.NEGATIVE_INFINITY);
  }

Since the same sentinel is always returned, perhaps the sentinel should be 
declared as a static variable on HitQueue and then getSentinelObject() would 
just return that static value?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
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