1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix scan iterators

This commit is contained in:
Leibale
2023-07-06 11:37:56 -04:00
parent cffefd0337
commit 172d329234
2 changed files with 10 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ You can override the default options by providing a configuration object:
```typescript
client.scanIterator({
cursor: 0, // 0 by default
cursor: '0', // optional, defaults to '0'
TYPE: 'string', // `SCAN` only
MATCH: 'patter*',
COUNT: 100