(type: string, args: string[])
| 39 | } |
| 40 | |
| 41 | async evict(type: string, args: string[]): Promise<null> { |
| 42 | const key = this.generateKey(type, args); |
| 43 | await this.client.del(key); |
| 44 | return null; |
| 45 | } |
| 46 | |
| 47 | private generateKey(type: string, args: string[]): string { |
| 48 | return `${type}:${args.join(':')}`; |
nothing calls this directly
no test coverage detected