最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Promisify Redis client - Stack Overflow

programmeradmin0浏览0评论

How can I promisify redis so that I could use then?

I have tried to promisify client:

var redis = require('redis');
Promise.promisifyAll(redis.RedisClient.prototype);
var client  = redis.createClient();

client.on('connect', function(){
    console.log('Redis connection is up');

    client.lrange('abc',0,3).then(function(result){
        console.log(result);
        res.send(200)
    });
});

But it responds with error:

client.lrange(...).then is not a function

PS: The callback code works fine, so it means server is running perfectly.

How can I promisify redis so that I could use then?

I have tried to promisify client:

var redis = require('redis');
Promise.promisifyAll(redis.RedisClient.prototype);
var client  = redis.createClient();

client.on('connect', function(){
    console.log('Redis connection is up');

    client.lrange('abc',0,3).then(function(result){
        console.log(result);
        res.send(200)
    });
});

But it responds with error:

client.lrange(...).then is not a function

PS: The callback code works fine, so it means server is running perfectly.

Share Improve this question asked Sep 21, 2016 at 11:31 mubeenmubeen 8492 gold badges19 silver badges41 bronze badges 2
  • lrange does have 4th argument as callback, why you are not using that ? – Rayon Commented Sep 21, 2016 at 11:33
  • because I am trying to use promise – mubeen Commented Sep 21, 2016 at 11:34
Add a ment  | 

1 Answer 1

Reset to default 11

When using promisifyAll, the promisified methods get an -Async suffix:

client.lrangeAsync('abc',0,3).then(...);

As per the documentation:

Note that the original methods on the object are not overwritten but new methods are created with the Async-suffix. For example, if you promisifyAll the node.js fs object use fs.statAsync to call the promisified stat method.

发布评论

评论列表(0)

  1. 暂无评论