Interface IColumnOptions

interface IColumnOptions {
    cacheSize: number;
    customHashFunction?: null | HashFunction<availableDataTypeForHash>;
    keyType: dataType;
    memBufferConfig: IInMemoryBufferOptions;
    name: string;
    path: string;
    sstConfig: Omit<ISSTMangerOptions, "path" | "valueType" | "keyType">;
    valueType: dataType;
    walConfig: IWalFileOptions;
}

Properties

cacheSize: number
customHashFunction?: null | HashFunction<availableDataTypeForHash>
keyType: dataType
memBufferConfig: IInMemoryBufferOptions
name: string
path: string
sstConfig: Omit<ISSTMangerOptions, "path" | "valueType" | "keyType">
valueType: dataType
walConfig: IWalFileOptions