Interface CacheHitEvent

Event emitted when a cache hit occurs.

interface CacheHitEvent {
    type: "cache:hit";
    key: string;
    statement: string;
    timestamp: Date;
}

Properties

type
key: string
statement: string
timestamp: Date