Skip to content

Instantly share code, notes, and snippets.

@remarkablemark
Created March 23, 2022 00:53
Show Gist options
  • Save remarkablemark/d617e6dcf06e831d9f011fae4efee0f2 to your computer and use it in GitHub Desktop.
Save remarkablemark/d617e6dcf06e831d9f011fae4efee0f2 to your computer and use it in GitHub Desktop.
const stream = redis.scanStream({ match: '*' });
let keys = [];
stream.on('data', (resultKeys) => {
keys = keys.concat(resultKeys);
});
stream.on('end', () => {
console.log(keys); // returns ['key']
});
stream.on('error', (error) => {
throw error;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment