mirror of
https://github.com/amark/gun.git
synced 2025-06-08 15:16:42 +00:00
5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
var client = require("redis").createClient();
|
|
|
|
client.mget(["sessions started", "sessions started", "foo"], function (err, res) {
|
|
console.dir(res);
|
|
}); |