Skip to main content
Module

x/redis/protocol/shared/protocol.ts>Protocol

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

Methods

sendCommand(
command: string,
args: Array<RedisValue>,
returnsUint8Arrays?: boolean,
): Promise<RedisReply>
readReply(returnsUint8Array?: boolean): Promise<RedisReply>
writeCommand(command: Command): Promise<void>
pipeline(commands: Array<Command>): Promise<Array<RedisReply | ErrorReplyError>>