Interface CacheMissEvent

Event emitted when a cache miss occurs.

interface CacheMissEvent {
    type: "cache:miss";
    key: string;
    statement: string;
    timestamp: Date;
}

Properties

type
key: string
statement: string
timestamp: Date