nodejs总结之redis模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs总结之redis模块相关的知识,希望对你有一定的参考价值。

 1 //创建redis连接服务对象
 2 var redis = require(‘redis‘);
 3 
 4 var redisServerIP = ‘127.0.0.1‘;
 5 var redisServerPort= ‘6379‘;
 6 
 7 function setup_redis() {
 8     var client = redis.createClient(redisServerPort, redisServerIP);
 9     client.on(‘error‘, function(error) {
10         console.log("RedisServer is error!\n" + error);
11     });
12     client.on("connect", function() {
13         console.log("RedisServer is connected!");
14     });
15     client.on("end", function() {
16         console.log("RedisServer is end!");
17     });
18     return client;
19 }
20 
21 module.exports.setup_redis = setup_redis;

 

以上是关于nodejs总结之redis模块的主要内容,如果未能解决你的问题,请参考以下文章

Nodejs之gulp用法总结

nodejs 中的异步之殇

node模块之path——path.join和path.resolve的区别

node之http模块总结

nodejs操作redis总结

NodeJS入门:常用模块汇总之http模块