Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno_nest/modules/redis/deps.ts>createLazyClient

Refer to nestjs to realize some common functions for Deno, support hono and oak
Go to Latest
function createLazyClient
import { createLazyClient } from "https://deno.land/x/deno_nest@v3.7.0/modules/redis/deps.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);