Class PerColumnIndexFiles
- java.lang.Object
-
- org.apache.cassandra.index.sai.disk.v1.PerColumnIndexFiles
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class PerColumnIndexFiles extends java.lang.Object implements java.io.Closeable
Maintains a mapping ofIndexComponent
s to associatedFileHandle
s for read operations on the components. Users of this class are returned copies of theFileHandle
s usingFileHandle.sharedCopy()
so returned handles still need to be closed by the user.
-
-
Constructor Summary
Constructors Constructor Description PerColumnIndexFiles(IndexDescriptor indexDescriptor, IndexTermType indexTermType, IndexIdentifier indexIdentifier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FileHandle
balancedTree()
void
close()
FileHandle
compressedVectors()
FileHandle
postingLists()
FileHandle
termsData()
-
-
-
Constructor Detail
-
PerColumnIndexFiles
public PerColumnIndexFiles(IndexDescriptor indexDescriptor, IndexTermType indexTermType, IndexIdentifier indexIdentifier)
-
-
Method Detail
-
termsData
public FileHandle termsData()
-
postingLists
public FileHandle postingLists()
-
balancedTree
public FileHandle balancedTree()
-
compressedVectors
public FileHandle compressedVectors()
-
close
public void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
-