()
| 56 | private redis: Redis; |
| 57 | |
| 58 | constructor() { |
| 59 | super({ |
| 60 | name: 'group', |
| 61 | onFlush: async () => { |
| 62 | await this.processBuffer(); |
| 63 | }, |
| 64 | }); |
| 65 | this.redis = getRedisCache(); |
| 66 | } |
| 67 | |
| 68 | private getCacheKey(projectId: string, id: string) { |
| 69 | return `${this.redisCachePrefix}${projectId}:${id}`; |
nothing calls this directly
no test coverage detected