MemoryStore.prototype.get<T>(key: string): Promise<T | null>
Read a value. The key is already-prefixed by CacheService.
Promise<T | null>
The deserialized value, or null when absent/expired
MemoryStore.prototype.get<T>(key: string): Promise<T | null>
Read a value. The key is already-prefixed by CacheService.
Promise<T | null>
The deserialized value, or null when absent/expired
import { MemoryStore } from "cache-plugin/src/index.ts";