Robert Muir created LUCENE-5095:
-----------------------------------

             Summary: Add useful toString()s to DocValues impls
                 Key: LUCENE-5095
                 URL: https://issues.apache.org/jira/browse/LUCENE-5095
             Project: Lucene - Core
          Issue Type: Task
            Reporter: Robert Muir


Currently, you have no insight into what these are doing (what kind of 
compression does your numerics have, how much RAM are the datastructures taking 
up, so on.

So I think we should add some cheap toString's (nothing heavy), things like

{code}
@Override
public String toString() {
  return "Lucene42Numeric(compression=TABLE,bpv=" + bitsPerValue)";
}
{code}

and so on. Maybe we could think about printing them from CheckIndex when 
verbose=true too.


--
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