fgb-vt - v1.0.4
    Preparing search index...

    Interface LocalConnectorOptions

    Configuration options for LocalConnector.

    interface LocalConnectorOptions {
        maxOpenFiles?: number;
    }
    Index

    Properties

    Properties

    maxOpenFiles?: number

    Maximum number of file handles kept open in the LRU pool.

    When the pool exceeds this limit, the least-recently-used handle is closed to make room. Higher values reduce open/close churn at the cost of more file descriptors.

    64