ZenFS
    Preparing search index...

    Interface Configuration<T>

    Configuration

    interface Configuration<T extends ConfigMounts> {
        addDevices: boolean;
        caseFold?: CaseFold;
        disableAccessChecks: boolean;
        disableAsyncCache?: boolean;
        gid: number;
        log: log.Configuration;
        mounts: { [K in string | number | symbol]: MountConfiguration<T[K]> };
        onlySyncOnClose: boolean;
        uid: number;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    addDevices: boolean

    Whether to automatically add normal Linux devices

    false
    
    caseFold?: CaseFold

    If set, sets case folding for the file system(s).

    disableAccessChecks: boolean

    If true, disables all permissions checking.

    This can increase performance.

    false
    
    disableAsyncCache?: boolean

    If set, disables the sync cache and sync operations on async file systems.

    gid: number

    The gid to use

    0
    

    Configurations options for the log.

    mounts: { [K in string | number | symbol]: MountConfiguration<T[K]> }

    An object mapping mount points to mount configuration

    onlySyncOnClose: boolean

    If true, files will only sync to the file system when closed. This overrides disableUpdateOnRead

    This can increase performance.

    false
    
    uid: number

    The uid to use

    0