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

ClusterPersistenceConfig

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

Configuration of the persistence functionality.

interface ClusterPersistenceConfig {
aofConfig?: AOFConfig;
mode?:
| "PERSISTENCE_MODE_UNSPECIFIED"
| "DISABLED"
| "RDB"
| "AOF";
rdbConfig?: RDBConfig;
}

§Properties

§
aofConfig?: AOFConfig
[src]

Optional. AOF configuration. This field will be ignored if mode is not AOF.

§
mode?: "PERSISTENCE_MODE_UNSPECIFIED" | "DISABLED" | "RDB" | "AOF"
[src]

Optional. The mode of persistence.

§
rdbConfig?: RDBConfig
[src]

Optional. RDB configuration. This field will be ignored if mode is not RDB.