Package | Description |
---|---|
org.apache.solr.uninverting |
Support for creating docvalues on-the-fly from the inverted index at runtime.
|
Modifier and Type | Class and Description |
---|---|
static class |
FieldCache.PointParser
Base class for points parsers.
|
Modifier and Type | Field and Description |
---|---|
static FieldCache.Parser |
FieldCache.DOUBLE_POINT_PARSER
A parser instance for double values encoded by
NumericUtils , e.g. |
static FieldCache.Parser |
FieldCache.FLOAT_POINT_PARSER
A parser instance for float values encoded by
NumericUtils , e.g. |
static FieldCache.Parser |
FieldCache.INT_POINT_PARSER
A parser instance for int values encoded by
NumericUtils , e.g. |
static FieldCache.Parser |
FieldCache.LEGACY_DOUBLE_PARSER
Deprecated.
Index with points and use
FieldCache.DOUBLE_POINT_PARSER instead. |
static FieldCache.Parser |
FieldCache.LEGACY_FLOAT_PARSER
Deprecated.
Index with points and use
FieldCache.FLOAT_POINT_PARSER instead. |
static FieldCache.Parser |
FieldCache.LEGACY_INT_PARSER
Deprecated.
Index with points and use
FieldCache.INT_POINT_PARSER instead. |
static FieldCache.Parser |
FieldCache.LEGACY_LONG_PARSER
Deprecated.
Index with points and use
FieldCache.LONG_POINT_PARSER instead. |
static FieldCache.Parser |
FieldCache.LONG_POINT_PARSER
A parser instance for long values encoded by
NumericUtils , e.g. |
Modifier and Type | Method and Description |
---|---|
Bits |
FieldCache.getDocsWithField(LeafReader reader,
String field,
FieldCache.Parser parser)
Checks the internal cache for an appropriate entry, and if none is found,
reads the terms/points in
field and returns a bit set at the size of
reader.maxDoc() , with turned on bits for each docid that
does have a value for this field. |
Bits |
FieldCacheImpl.getDocsWithField(LeafReader reader,
String field,
FieldCache.Parser parser) |
NumericDocValues |
FieldCache.getNumerics(LeafReader reader,
String field,
FieldCache.Parser parser)
Returns a
NumericDocValues over the values found in documents in the given
field. |
NumericDocValues |
FieldCacheImpl.getNumerics(LeafReader reader,
String field,
FieldCache.Parser parser) |
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.