(type: string, args: string[])
| 47 | } |
| 48 | |
| 49 | async evict(type: string, args: string[]): Promise<null> { |
| 50 | const key = this.generateKey(type, args); |
| 51 | this.inMemoryDb.delete(key); |
| 52 | return null; |
| 53 | } |
| 54 | |
| 55 | private generateKey(type: string, args: string[]): string { |
| 56 | return `${type}:${JSON.stringify(args)}`; |
nothing calls this directly
no test coverage detected