FP-Devicer - v1.6.1
    Preparing search index...

    Interface AdapterFactoryOptions

    Backend-specific connection options passed to AdapterFactory.create.

    Only the property matching the chosen AdapterType needs to be provided; all others are ignored.

    interface AdapterFactoryOptions {
        postgres?: { connectionString: string };
        redis?: { url: string };
        sqlite?: { filePath: string };
    }
    Index

    Properties

    postgres?: { connectionString: string }

    Type Declaration

    • connectionString: string

      PostgreSQL connection string, e.g. "postgresql://user:pass@host/db".

    redis?: { url: string }

    Type Declaration

    • url: string

      Redis connection URL, e.g. "redis://localhost:6379".

    sqlite?: { filePath: string }

    Type Declaration

    • filePath: string

      Absolute or relative path to the SQLite database file.