(prefix, cacheController, ttl)
| 14 | */ |
| 15 | export class SubCache { |
| 16 | constructor(prefix, cacheController, ttl) { |
| 17 | this.prefix = prefix; |
| 18 | this.cache = cacheController; |
| 19 | this.ttl = ttl; |
| 20 | } |
| 21 | |
| 22 | get(key) { |
| 23 | const cacheKey = joinKeys(this.prefix, key); |
nothing calls this directly
no outgoing calls
no test coverage detected