Skip to content

v3.2.0

Choose a tag to compare

@stipsan stipsan released this 15 Nov 19:09
dfaf417

New Commands

SCAN command (#334 @DrMegavolt)

redis
  .scan(0, 'MATCH', 'foo*', 'COUNT', 1)
  .then(result => console.log(result))

LRANGE command (#335 @sseidametov)

redis
  .lrange('myKey', 0, 2)
  .then(result => console.log(result))