Fraci
    Preparing search index...

    Interface PrismaFraciOptions<Client>

    The options for the fractional indexing extension.

    { fields: { "article.fi": { group: ["userId"], lengthBase: "0123456789", digitBase: "0123456789" } } }
    
    interface PrismaFraciOptions<Client> {
        fields: PrismaFraciFieldOptionsRecord<Client>;
        maxLength?: number;
        maxRetries?: number;
    }

    Type Parameters

    • Client

      The Prisma client type

    Index

    Properties

    The fractional index fields.

    maxLength?: number

    The maximum length of the fractional index.

    50
    
    maxRetries?: number

    The maximum number of retries to generate a fractional index.

    5