Documentation
The documentation for Quick Redis
Commands
add(key, number)
client.add('foo', 500).then(console.log) // -> 500delete(key)
client.set('foo', 'bar').then(console.log) // -> 'bar'
client.delete('foo').then(console.log) // -> 1get(key)
has(key)
set(key, value)
subtract(key, number)
Last updated