gpt4 book ai didi

node.js - 退出命令在node-redis中给出错误

转载 作者:可可西里 更新时间:2023-11-01 11:43:45 26 4
gpt4 key购买 nike

function Redis(){

this.redis=require('redis-node');
this.client =this.redis.createClient(6377, '127.0.0.1', {detect_buffers: true});
this.client.auth("pwd");

}

module.exports=Redis;

Redis.prototype.setKeyValue=function(key,value){

var obj=this;
this.client.get(key,function(err,res){

if(res==null){


obj.client.set(key,value,function (err, result) {
console.log(result);
obj.client.quit();//here im getting error as client doesn't have method quit
});

}
else{

console.log('Sorry!!!key is already exist');
}
});


};

最佳答案

我终于知道了

https://github.com/bnoguchi/redis-node

在上面的库中,客户端没有名为 client.quit() 的方法,我们可以使用 client.close() 代替。

https://github.com/mranney/node_redis

这里它有一个名为 quit 的方法来关闭连接。

关于node.js - 退出命令在node-redis中给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18568841/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com