(key)
| 250 | } |
| 251 | |
| 252 | async zcard(key) { |
| 253 | const sortedSet = this.sortedSets.get(key); |
| 254 | return sortedSet ? sortedSet.size : 0; |
| 255 | } |
| 256 | |
| 257 | async zremrangebyrank(key, start, end) { |
| 258 | const sortedSet = this.sortedSets.get(key); |
no test coverage detected