How to use the set function from redis
Find comprehensive JavaScript redis.set code examples handpicked from public code repositorys.
3 4 5 6 7 8 9 10 11 12
// Master / Slave Replication 구조이다. // 따라서 write 는 Master에 read 는 Slave 에서 처리하도록 되어 있다. // getConnection 시 write 는 Master, read 는 Slave 하도록 되어 있다 redis.set('::12345678::asfasf', "safasfsaf", function (err) { //return callback(err); }, 샤드키 0 ); redis.get('::12345678::asfasf', function (err, id) {
1
0
3
+ 13 other calls in file
redis.createClient is the most popular function in redis (1230 examples)