Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class Lucene41PostingsReader

    Concrete class that reads docId(maybe frq,pos,offset,payloads) list with postings format.

    Note

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

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

    Constructors

    Lucene41PostingsReader(Directory, FieldInfos, SegmentInfo, IOContext, string)

    Sole constructor.

    Declaration
    public Lucene41PostingsReader(Directory dir, FieldInfos fieldInfos, SegmentInfo segmentInfo, IOContext ioContext, string segmentSuffix)
    Parameters
    Type Name Description
    Directory dir
    FieldInfos fieldInfos
    SegmentInfo segmentInfo
    IOContext ioContext
    string segmentSuffix
    See Also
    Lucene41SkipReader

    Methods

    CheckIntegrity()

    Checks consistency of this reader.

    Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.

    Note

    This API is for internal purposes only and might change in incompatible ways in the next release.

    Declaration
    public override void CheckIntegrity()
    Overrides
    PostingsReaderBase.CheckIntegrity()
    See Also
    Lucene41SkipReader

    DecodeTerm(long[], DataInput, FieldInfo, BlockTermState, bool)

    Actually decode metadata for next term.

    Declaration
    public override void DecodeTerm(long[] longs, DataInput @in, FieldInfo fieldInfo, BlockTermState termState, bool absolute)
    Parameters
    Type Name Description
    long[] longs
    DataInput in
    FieldInfo fieldInfo
    BlockTermState termState
    bool absolute
    Overrides
    PostingsReaderBase.DecodeTerm(long[], DataInput, FieldInfo, BlockTermState, bool)
    See Also
    EncodeTerm(long[], DataOutput, FieldInfo, BlockTermState, bool)

    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
    PostingsReaderBase.Dispose(bool)
    See Also
    Lucene41SkipReader

    Docs(FieldInfo, BlockTermState, IBits, DocsEnum, DocsFlags)

    Must fully consume state, since after this call that TermState may be reused.

    Declaration
    public override DocsEnum Docs(FieldInfo fieldInfo, BlockTermState termState, IBits liveDocs, DocsEnum reuse, DocsFlags flags)
    Parameters
    Type Name Description
    FieldInfo fieldInfo
    BlockTermState termState
    IBits liveDocs
    DocsEnum reuse
    DocsFlags flags
    Returns
    Type Description
    DocsEnum
    Overrides
    PostingsReaderBase.Docs(FieldInfo, BlockTermState, IBits, DocsEnum, DocsFlags)
    See Also
    Lucene41SkipReader

    DocsAndPositions(FieldInfo, BlockTermState, IBits, DocsAndPositionsEnum, DocsAndPositionsFlags)

    Must fully consume state, since after this call that TermState may be reused.

    Declaration
    public override DocsAndPositionsEnum DocsAndPositions(FieldInfo fieldInfo, BlockTermState termState, IBits liveDocs, DocsAndPositionsEnum reuse, DocsAndPositionsFlags flags)
    Parameters
    Type Name Description
    FieldInfo fieldInfo
    BlockTermState termState
    IBits liveDocs
    DocsAndPositionsEnum reuse
    DocsAndPositionsFlags flags
    Returns
    Type Description
    DocsAndPositionsEnum
    Overrides
    PostingsReaderBase.DocsAndPositions(FieldInfo, BlockTermState, IBits, DocsAndPositionsEnum, DocsAndPositionsFlags)
    See Also
    Lucene41SkipReader

    Init(IndexInput)

    Performs any initialization, such as reading and verifying the header from the provided terms dictionary IndexInput.

    Declaration
    public override void Init(IndexInput termsIn)
    Parameters
    Type Name Description
    IndexInput termsIn
    Overrides
    PostingsReaderBase.Init(IndexInput)
    See Also
    Lucene41SkipReader

    NewTermState()

    Return a newly created empty TermState.

    Declaration
    public override BlockTermState NewTermState()
    Returns
    Type Description
    BlockTermState
    Overrides
    PostingsReaderBase.NewTermState()
    See Also
    Lucene41SkipReader

    RamBytesUsed()

    Returns approximate RAM bytes used.

    Declaration
    public override long RamBytesUsed()
    Returns
    Type Description
    long
    Overrides
    PostingsReaderBase.RamBytesUsed()
    See Also
    Lucene41SkipReader

    Implements

    IDisposable

    See Also

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