Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class CompressingStoredFieldsWriter

    StoredFieldsWriter impl for CompressingStoredFieldsFormat.

    Note

    This API is experimental and might change in incompatible ways in the next release.

    Inheritance
    object
    StoredFieldsWriter
    CompressingStoredFieldsWriter
    Implements
    IDisposable
    Inherited Members
    StoredFieldsWriter.Dispose()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Lucene.Net.Codecs.Compressing
    Assembly: Lucene.Net.dll
    Syntax
    public sealed class CompressingStoredFieldsWriter : StoredFieldsWriter, IDisposable

    Constructors

    CompressingStoredFieldsWriter(Directory, SegmentInfo, string, IOContext, string, CompressionMode, int)

    Sole constructor.

    Declaration
    public CompressingStoredFieldsWriter(Directory directory, SegmentInfo si, string segmentSuffix, IOContext context, string formatName, CompressionMode compressionMode, int chunkSize)
    Parameters
    Type Name Description
    Directory directory
    SegmentInfo si
    string segmentSuffix
    IOContext context
    string formatName
    CompressionMode compressionMode
    int chunkSize

    Methods

    Abort()

    Aborts writing entirely, implementation should remove any partially-written files, etc.

    Declaration
    public override void Abort()
    Overrides
    StoredFieldsWriter.Abort()

    Dispose(bool)

    Implementations must override and should dispose all resources used by this instance.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    StoredFieldsWriter.Dispose(bool)

    Finish(FieldInfos, int)

    Called before Dispose(), passing in the number of documents that were written. Note that this is intentionally redundant (equivalent to the number of calls to StartDocument(int), but a Codec should check that this is the case to detect the bug described in LUCENE-1282.

    Declaration
    public override void Finish(FieldInfos fis, int numDocs)
    Parameters
    Type Name Description
    FieldInfos fis
    int numDocs
    Overrides
    StoredFieldsWriter.Finish(FieldInfos, int)

    FinishDocument()

    Called when a document and all its fields have been added.

    Declaration
    public override void FinishDocument()
    Overrides
    StoredFieldsWriter.FinishDocument()

    Merge(MergeState)

    Merges in the stored fields from the readers in mergeState. The default implementation skips over deleted documents, and uses StartDocument(int), WriteField(FieldInfo, IIndexableField), and Finish(FieldInfos, int), returning the number of documents that were written. Implementations can override this method for more sophisticated merging (bulk-byte copying, etc).

    Declaration
    public override int Merge(MergeState mergeState)
    Parameters
    Type Name Description
    MergeState mergeState
    Returns
    Type Description
    int
    Overrides
    StoredFieldsWriter.Merge(MergeState)

    StartDocument(int)

    Called before writing the stored fields of the document. WriteField(FieldInfo, IIndexableField) will be called numStoredFields times. Note that this is called even if the document has no stored fields, in this case numStoredFields will be zero.

    Declaration
    public override void StartDocument(int numStoredFields)
    Parameters
    Type Name Description
    int numStoredFields
    Overrides
    StoredFieldsWriter.StartDocument(int)

    WriteField(FieldInfo, IIndexableField)

    Writes a single stored field.

    Declaration
    public override void WriteField(FieldInfo info, IIndexableField field)
    Parameters
    Type Name Description
    FieldInfo info
    IIndexableField field
    Overrides
    StoredFieldsWriter.WriteField(FieldInfo, IIndexableField)

    Implements

    IDisposable
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.