Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RDBConfig

import type { RDBConfig } from "https://googleapis.deno.dev/v1/redis:v1.ts";

Configuration of the RDB based persistence.

interface RDBConfig {
rdbSnapshotPeriod?:
| "SNAPSHOT_PERIOD_UNSPECIFIED"
| "ONE_HOUR"
| "SIX_HOURS"
| "TWELVE_HOURS"
| "TWENTY_FOUR_HOURS";
rdbSnapshotStartTime?: Date;
}

§Properties

§
rdbSnapshotPeriod?: "SNAPSHOT_PERIOD_UNSPECIFIED" | "ONE_HOUR" | "SIX_HOURS" | "TWELVE_HOURS" | "TWENTY_FOUR_HOURS"
[src]

Optional. Period between RDB snapshots.

§
rdbSnapshotStartTime?: Date
[src]

Optional. The time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.