Skip to main content
Module

x/redis/connection.ts>Connection

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

Properties

closer: Closer
reader: BufReader
writer: BufWriter
maxRetryCount: number
isClosed: boolean
isConnected: boolean
isRetriable: boolean

Methods

close(): void
connect(): Promise<void>
reconnect(): Promise<void>
sendCommand(command: string, args?: Array<RedisValue>): Promise<RedisReply>