Rowles.LeanLucene.Codecs.TermVectors
Classes
TermVectorsReader
Reads per-document term vectors from .tvd/.tvx files using memory-mapped I/O.
TermVectorsWriter
Writes per-document term vectors to .tvd (data) and .tvx (offset index) files. Format: .tvx: [docCount:int32] [long[] offsets into .tvd] .tvd per doc: [fieldCount:int32] per field: [fieldName:string] [termCount:int32] per term: [term:string] [freq:int32] [posCount:int32] [positions:int32[]]
Structs
TermVectorEntry
A single term vector entry: term text, frequency in the document, and positions.