You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-01 16:46:54 +03:00
33 lines
651 B
JavaScript
33 lines
651 B
JavaScript
'use strict';
|
|
|
|
var redis = require('redis');
|
|
var client = redis.createClient('/tmp/redis.sock');
|
|
var profiler = require('v8-profiler');
|
|
|
|
client.on('connect', function () {
|
|
console.log('Got Unix socket connection.');
|
|
});
|
|
|
|
client.on('error', function (err) {
|
|
console.log(err.message);
|
|
});
|
|
|
|
client.set('space chars', 'space value');
|
|
|
|
setInterval(function () {
|
|
client.get('space chars');
|
|
}, 100);
|
|
|
|
function done () {
|
|
client.info(function (err, reply) {
|
|
console.log(reply.toString());
|
|
client.quit();
|
|
});
|
|
}
|
|
|
|
setTimeout(function () {
|
|
console.log('Taking snapshot.');
|
|
profiler.takeSnapshot();
|
|
done();
|
|
}, 5000);
|