(key)
| 81 | } |
| 82 | |
| 83 | async delete(key) { |
| 84 | if (this.useFallback) { |
| 85 | logger.debug(`[DEGRADED] Deleting from memory: ${key}`); |
| 86 | } |
| 87 | return this.db.delete(key); |
| 88 | } |
| 89 | |
| 90 | async list(prefix) { |
| 91 | return this.db.list(prefix); |
no outgoing calls
no test coverage detected