import { StorageMemory } from "https://deno.land/x/mtkruto@0.1.157/3_storage.ts";
Properties
protected
messageMap: CacheMap<string, unknown>Methods
get<T>(key: readonly StorageKeyPart[]): T | null
getMany<T>(filter: GetManyFilter, params?: { limit?: number; reverse?: boolean; }): Generator<[readonly StorageKeyPart[], T]>
getMap(key: readonly StorageKeyPart[]): Map<string, unknown>
getMaps(): [Map<string, unknown>, Map<string, unknown>]
incr(key: readonly StorageKeyPart[], by: number)
set(key_: readonly StorageKeyPart[], value: unknown): MaybePromise<void>