You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Merge branch 'set-keepalive' of https://github.com/Clever/node_redis into Clever-set-keepalive
This commit is contained in:
4
index.js
4
index.js
@@ -43,6 +43,9 @@ function RedisClient(stream, options) {
|
||||
if (this.options.socket_nodelay === undefined) {
|
||||
this.options.socket_nodelay = true;
|
||||
}
|
||||
if (this.options.socket_keepalive === undefined) {
|
||||
this.options.socket_keepalive = false;
|
||||
}
|
||||
this.should_buffer = false;
|
||||
this.command_queue_high_water = this.options.command_queue_high_water || 1000;
|
||||
this.command_queue_low_water = this.options.command_queue_low_water || 0;
|
||||
@@ -253,6 +256,7 @@ RedisClient.prototype.on_connect = function () {
|
||||
if (this.options.socket_nodelay) {
|
||||
this.stream.setNoDelay();
|
||||
}
|
||||
this.stream.setKeepAlive(this.options.socket_keepalive);
|
||||
this.stream.setTimeout(0);
|
||||
|
||||
this.init_parser();
|
||||
|
Reference in New Issue
Block a user