Class DocValuesFormat
Encodes/decodes per-document values.
Note, when extending this class, the name (Name) may
written into the index in certain configurations. In order for the segment
to be read, the name must resolve to your implementation via For
To implement your own format:
- Subclass this class.
- Subclass Default
Doc , override the Initialize() method, and add the lineValues Format Factory base.ScanForDocValuesFormats(typeof(YourDocValuesFormat).Assembly)
. If you have any format classes in your assembly that are not meant for reading, you can add the ExcludeDoc to them so they are ignored by the scan.Values Format From Scan Attribute - Set the new IDoc
Values by calling SetFormat Factory Doc at application startup.Values Format Factory(IDoc Values Format Factory)
DocValuesFormat Names
Unlike the Java version, format names are by default convention-based on the class name. If you name your custom format class "MyCustomDocValuesFormat", the format name will the same name without the "DocValuesFormat" suffix: "MyCustom".
You can override this default behavior by using the Doc
Inheritance
Inherited Members
Namespace: Lucene.Net.Codecs
Assembly: Lucene.Net.dll
Syntax
public abstract class DocValuesFormat
Constructors
| Improve this Doc View SourceDocValuesFormat()
Creates a new docvalues format.
The provided name will be written into the index segment in some configurations
(such as when using Per
Declaration
protected DocValuesFormat()
Properties
| Improve this Doc View SourceAvailableDocValuesFormats
Returns a list of all available format names.
Declaration
public static ICollection<string> AvailableDocValuesFormats { get; }
Property Value
Type | Description |
---|---|
System. |
Name
Unique name that's used to retrieve this format when reading the index.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceFieldsConsumer(SegmentWriteState)
Returns a Doc
Declaration
public abstract DocValuesConsumer FieldsConsumer(SegmentWriteState state)
Parameters
Type | Name | Description |
---|---|---|
Segment |
state |
Returns
Type | Description |
---|---|
Doc |
FieldsProducer(SegmentReadState)
Returns a Doc
NOTE: by the time this call returns, it must hold open any files it will
need to use; else, those files may be deleted. Additionally, required files
may be deleted during the execution of this call before there is a chance
to open them. Under these circumstances an System.
Declaration
public abstract DocValuesProducer FieldsProducer(SegmentReadState state)
Parameters
Type | Name | Description |
---|---|---|
Segment |
state |
Returns
Type | Description |
---|---|
Doc |
ForName(String)
Looks up a format by name.
Declaration
public static DocValuesFormat ForName(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name |
Returns
Type | Description |
---|---|
Doc |
GetDocValuesFormatFactory()
Gets the associated Doc
Declaration
public static IDocValuesFormatFactory GetDocValuesFormatFactory()
Returns
Type | Description |
---|---|
IDoc |
The Doc |
SetDocValuesFormatFactory(IDocValuesFormatFactory)
Sets the IDoc
Declaration
public static void SetDocValuesFormatFactory(IDocValuesFormatFactory docValuesFormatFactory)
Parameters
Type | Name | Description |
---|---|---|
IDoc |
docValuesFormatFactory | The new IDoc |
Exceptions
Type | Condition |
---|---|
System. |
The |
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |