(key: string, value: T, ttl?: number)
| 204 | } |
| 205 | |
| 206 | public set<T>(key: string, value: T, ttl?: number) { |
| 207 | if (this.cache) { |
| 208 | this.cache.set(key, value, ttl) |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | public mset<T>(keys: [{ key: string; value: T; ttl: number }]) { |
| 213 | if (this.cache) { |
no outgoing calls
no test coverage detected