-
Notifications
You must be signed in to change notification settings - Fork 3
/
example.js
73 lines (60 loc) · 1.51 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var rcluster = require('./index.js').clusterClient;
var settings = {
host: '127.0.0.1',
port: 7001,
//useFallbackDriver: true //uses node_redis
};
var t = new rcluster.clusterInstance(settings, function (err, r) {
if (err) throw err;
// r.rawCall(['SET', 'привет', 'мир'], function(e, data){
// console.log('unicode save', e, data);
//
// r.rawCall(['SET', 'привет2', 'мир2'], function(e, data){
// console.log('unicode save2', e, data);
//
// r.rawCall(['SET', 'привет3', 'мир3'], function(e, data){
// console.log('unicode save3', e, data);
// }, {targetSlot: 10000});
// }, {targetSlot: 10000});
//
// }, {targetSlot: 10000});
r.hmset('hset:1', {a:1,b:2,c:'hello'}, function(e,d,size){
console.log(e,d,size);
});
r.ping(function(e, resp){
console.log('ping', e, resp);
});
function doIt() {
r.set('foo', 'bar', function (err, reply) {
if (err) throw err;
r.get('foo', function (err, reply) {
if (err) throw err;
console.log(err, reply);
});
});
r.hgetall('hset:1', function(e, d){
console.log(e,d);
});
try {
console.log('hmget');
r.hmget('hset:1', 'a', 'b', 'f', function(e, d){
console.log('hmget',e,d);
});
} catch(e) {
console.log('exception', e, e.stack)
}
}
doIt();
});
t.on('error', function(err){
console.error(err);
});
//queue
t.ping(function(e, data){
console.log('PONG', e, data);
});
setInterval(function(){
t.incr('key', function(e, incr){
console.log('INCR', e, incr);
});
}, 1000);