标签:style blog http color 使用 数据
连接池的作用主要是较少每次临时建立连接所带来的开销。初步一看,nodejs运行单线程上,它不能同时使用多个连接,乍一看是不需要连接池的。但是这只是我们初步下意识的感觉,下面我们详细分析来看看这个结论对是不对。
var redis = require("redis"), client = redis.createClient(6379, "127.0.0.1"); module.exports = client;
上面的连接会在程序启动载入完后就连接上了。使用它的时候引入它就可以使用全局唯一的连接。
var db = require("db.js"); exports.add = function(req, res, next) { db.get("keyName", function() { res.send("ok"); }); }
nodejs + redis/mysql 连接池问题,布布扣,bubuko.com
标签:style blog http color 使用 数据
原文地址:http://www.cnblogs.com/laozhbook/p/nodejs_redis_connection_pool.html