1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/examples/mget.js
Ruben Bridgewater f1a7bcd735 chore: use standard
2017-05-06 07:06:52 +02:00

9 lines
186 B
JavaScript

'use strict'
var client = require('redis').createClient()
client.mget(['sessions started', 'sessions started', 'foo'], function (err, res) {
if (err) throw err
console.dir(res)
})