PgBeam Docs
Projects

updateCacheRule

Update cache rule

Enable or disable caching for a specific query shape, with optional TTL and SWR overrides. Requires the query to exist in the cache rules.

Usage

const result = await api.projects.updateCacheRule({
  pathParams: {
    project_id: "prj_xxx",
    database_id: "db_xxx",
    query_hash: "...",
  },
  body: {
    cache_enabled: true,
  },
});

Parameters

ParameterTypeRequiredDescription
pathParams.project_idstringYesUnique project identifier (prefixed, e.g. prj_xxx).
pathParams.database_idstringYesUnique database identifier (prefixed, e.g. db_xxx).
pathParams.query_hashstringYesxxhash64 hex of the normalized SQL.
body.cache_enabledbooleanYesWhether to enable caching for this query shape.
body.cache_ttl_secondsnumberNoTTL override in seconds. Null to use project default.
body.cache_swr_secondsnumberNoSWR override in seconds. Null to use project default.

Response

Promise<UpdateCacheRuleResponse> — cache rule updated.

Example

import { PgBeamClient } from "pgbeam";

const client = new PgBeamClient({
  token: "pbk_...",
  baseUrl: "https://api.pgbeam.com",
});

const result = await client.api.projects.updateCacheRule({
  pathParams: {
    project_id: "prj_xxx",
    database_id: "db_xxx",
    query_hash: "...",
  },
  body: {
    cache_enabled: true,
  },
});

Errors

StatusDescription
400Invalid request parameters.
401Missing or invalid authentication.
403Operation not allowed by current plan limits.
404Resource not found.
429Rate limited. Try again later.

On this page