Skip to main content
Module

x/redis/mod.ts>RedisConnectionOptions

🦕 Redis client for Deno 🍕
Very Popular
Go to Latest
interface RedisConnectionOptions
import { type RedisConnectionOptions } from "https://deno.land/x/redis@v0.32.2/mod.ts";

Properties

optional
tls: boolean
optional
db: number
optional
password: string
optional
username: string
optional
name: string
optional
maxRetryCount: number
optional
backoff: Backoff
optional
healthCheckInterval: number

When this option is set, a PING command is sent every specified number of seconds.

optional
[kUnstableCreateProtocol]: (conn: Deno.Conn) => Protocol