Interface CacheFunctionOptions

interface CacheFunctionOptions {
    cacheInstance?: Cache;
    key?: string;
    keyGenerator?: (fnName: string, args: any[]) => string;
    tags?: string[];
    ttl?: number;
}

Properties

cacheInstance?: Cache
key?: string
keyGenerator?: (fnName: string, args: any[]) => string
tags?: string[]
ttl?: number