Skip to content

v6.2.0

Compare
Choose a tag to compare
@stipsan stipsan released this 28 Jan 12:11
1fdd8e5

6.2.0 (2022-01-28)

Features

Constructor shorthands now supported:

  • new Redis(6379, 'localhost', { keyPrefix: 'shared:' })
  • new Redis('//localhost:6379', { keyPrefix: 'shared:' })
  • new Redis('redis://localhost:6379', { keyPrefix: 'private:' })
  • new Redis(6379, { keyPrefix: 'shared:' })
  • new Redis(6379)
  • new Redis('redis://localhost:6379/')