utilium
    Preparing search index...

    Interface Options

    interface Options {
        cacheOnly?: boolean;
        regionGapThreshold?: number;
        sparse?: boolean;
    }
    Index

    Properties

    cacheOnly?: boolean

    Whether to only update the cache when changing or deleting resources

    false
    
    regionGapThreshold?: number

    The threshold for whether to combine regions or not

    Region

    0xfff // 4 KiB
    
    sparse?: boolean

    If true, use multiple buffers to cache a file. This is useful when working with small parts of large files, since we don't need to allocate a large buffer that is mostly unused

    true