@@ -122,7 +122,7 @@ Client.config = {
122
122
if ( ! server . match ( / ( .+ ) : ( \d + ) $ / ) ) {
123
123
server = server + ':11211' ;
124
124
}
125
-
125
+
126
126
// server is dead, bail out
127
127
if ( server in this . issues && this . issues [ server ] . failed ) {
128
128
return callback ( false , false ) ;
@@ -565,6 +565,11 @@ Client.config = {
565
565
566
566
return [ BUFFER , false ] ;
567
567
}
568
+ // Amazon-specific memcached configuration information, used for node
569
+ // auto-discovery.
570
+ , 'CONFIG' : function ( ) {
571
+ return [ CONTINUE , this . bufferArray [ 0 ] ] ;
572
+ }
568
573
} ;
569
574
570
575
function resultSetIsEmpty ( resultSet ) {
@@ -706,9 +711,21 @@ Client.config = {
706
711
token = S . bufferArray . shift ( ) ;
707
712
tokenSet = token . split ( ' ' ) ;
708
713
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 - z A - Z 0 - 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
+ }
712
729
// special case for value, it's required that it has a second response!
713
730
// add the token back, and wait for the next response, we might be
714
731
// handling a big ass response here.
0 commit comments