Skip to content

Instantly share code, notes, and snippets.

@wong2
Created January 28, 2017 04:30
Show Gist options
  • Select an option

  • Save wong2/4229cf2075f4118bba18eac43fe3ef7c to your computer and use it in GitHub Desktop.

Select an option

Save wong2/4229cf2075f4118bba18eac43fe3ef7c to your computer and use it in GitHub Desktop.
async function runBatch(client, command, keys, ...args) {
let batch = client.batch()
for (let key of keys) {
batch[command](key, ...args)
}
return batch.execAsync()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment