(type: string, args: string[])
| 33 | } |
| 34 | |
| 35 | async get(type: string, args: string[]): Promise<any> { |
| 36 | const key = this.generateKey(type, args); |
| 37 | const value = await this.client.get(key); |
| 38 | return value ? JSON.parse(value) : null; |
| 39 | } |
| 40 | |
| 41 | async evict(type: string, args: string[]): Promise<null> { |
| 42 | const key = this.generateKey(type, args); |
nothing calls this directly
no test coverage detected