Skip to main content
Module

x/redis/mod.ts>Connection

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

Properties

reader: BufReader
writer: BufWriter
isClosed: boolean
isConnected: boolean

Methods

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