(key)
| 150 | } |
| 151 | |
| 152 | async del(key) { |
| 153 | this.values.delete(key); |
| 154 | this.sortedSets.delete(key); |
| 155 | this.hashes.delete(key); |
| 156 | return 1; |
| 157 | } |
| 158 | |
| 159 | async hset(key, field, value) { |
| 160 | const hash = this.hashes.get(key) || new Map(); |
no test coverage detected