Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/keydb/keydb.ts>KeydbOptions

Simple Key-value storage module with support for multiple database backends.
Latest
interface KeydbOptions
import { type KeydbOptions } from "https://deno.land/x/keydb@1.0.0/keydb.ts";

Properties

optional
namespace: string
optional
ttl: number
optional
serialize: (value: any) => string | undefined
optional
deserialize: (value: string) => any