Interface ISSTMangerOptions

interface ISSTMangerOptions {
    customHashFunction?: null | HashFunction<availableDataTypeForHash>;
    growthFactor: number;
    keyType: dataType;
    levels: number;
    path: string;
    readMmap: boolean;
    sstConfig: Omit<ISSTFileOptions, "dataType" | "path" | "max" | "min" | "KeyDataType">;
    sstThreshold: number;
    threadsForMerge: number;
    valueType: dataType;
}

Properties

customHashFunction?: null | HashFunction<availableDataTypeForHash>
growthFactor: number
keyType: dataType
levels: number
path: string
readMmap: boolean
sstConfig: Omit<ISSTFileOptions, "dataType" | "path" | "max" | "min" | "KeyDataType">
sstThreshold: number
threadsForMerge: number
valueType: dataType