Skip to main content
Module

x/redis/mod.ts>createLazyClient

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

Create a lazy Redis client that will not establish a connection until a command is actually executed.

import { createLazyClient } from "./mod.ts";

const client = createLazyClient({ hostname: "127.0.0.1", port: 6379 });
console.assert(!client.isConnected);
await client.get("foo");
console.assert(client.isConnected);