drupflare/drangler - v0.1.0
    Preparing search index...

    Variable LIMITSConst

    LIMITS: {
        assetBytes: number;
        boundParams: 100;
        imageTransformsPerMonth: 5000;
        recordBytes: 2199995;
        rendersPerDayCold: 1052;
        rendersPerDayWindowed: 7575;
        statementChars: 100000;
        visitsPerDay: 100000;
    } = ...

    The limits for the migration rules.

    Kept as one table so a rule cannot invent a ceiling, and so a figure that moves is corrected in one place instead of in every message that mentions it.

    Type Declaration

    • ReadonlyassetBytes: number

      per-asset ceiling the Drupal pack is built against

    • ReadonlyboundParams: 100

      bound parameters per statement

    • ReadonlyimageTransformsPerMonth: 5000

      unique Cloudflare Images transformations per MONTH on free; fails as a cap, not a bill

    • ReadonlyrecordBytes: 2199995

      one Durable Object SQLite record

    • ReadonlyrendersPerDayCold: 1052

      cold regeneration ceiling, bound by rows written

    • ReadonlyrendersPerDayWindowed: 7575

      the same ceiling with a fill window amortising the boot

    • ReadonlystatementChars: 100000

      statement text a Durable Object will accept

    • ReadonlyvisitsPerDay: 100000

      Worker requests per day on the free plan; every visit costs one, cached or not