Skip to content

Commit 7d6683f

Browse files
author
Ron Korving
committed
Merge pull request #284 from kcarlson/aws-auto-discovery
Support for 'config get cluster'
2 parents b2a4bd5 + 59172b6 commit 7d6683f

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

lib/memcached.js

+21-4
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Client.config = {
122122
if(!server.match(/(.+):(\d+)$/)) {
123123
server = server + ':11211';
124124
}
125-
125+
126126
// server is dead, bail out
127127
if (server in this.issues && this.issues[server].failed) {
128128
return callback(false, false);
@@ -565,6 +565,11 @@ Client.config = {
565565

566566
return [BUFFER, false];
567567
}
568+
// Amazon-specific memcached configuration information, used for node
569+
// auto-discovery.
570+
, 'CONFIG': function() {
571+
return [CONTINUE, this.bufferArray[0]];
572+
}
568573
};
569574

570575
function resultSetIsEmpty(resultSet) {
@@ -706,9 +711,21 @@ Client.config = {
706711
token = S.bufferArray.shift();
707712
tokenSet = token.split(' ');
708713

709-
// special case for digit only's these are responses from INCR and DECR
710-
if (/^\d+$/.test(tokenSet[0])) tokenSet.unshift('INCRDECR');
711-
714+
if (/^\d+$/.test(tokenSet[0])) {
715+
// special case for "config get cluster"
716+
// Amazon-specific memcached configuration information, see aws
717+
// documentation regarding adding auto-discovery to your client library.
718+
// Example response of a cache cluster containing three nodes:
719+
// configversion\n
720+
// hostname|ip-address|port hostname|ip-address|port hostname|ip-address|port\n\r\n
721+
if (/(([-.a-zA-Z0-9]+)\|(\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b)\|(\d+))/.test(S.bufferArray[0])) {
722+
tokenSet.unshift('CONFIG');
723+
}
724+
// special case for digit only's these are responses from INCR and DECR
725+
else {
726+
tokenSet.unshift('INCRDECR');
727+
}
728+
}
712729
// special case for value, it's required that it has a second response!
713730
// add the token back, and wait for the next response, we might be
714731
// handling a big ass response here.

0 commit comments

Comments
 (0)