]> git.saurik.com Git - redis.git/blobdiff - deps/hiredis/example.c
show initial querybuf bytes on querybuf overflow.
[redis.git] / deps / hiredis / example.c
index 676814a2ef7aab19fad1a6fe7ff34938fd98d1a6..90ff9ed5e9717033de799e5e3c77f036f627c165 100644 (file)
@@ -9,7 +9,8 @@ int main(void) {
     redisContext *c;
     redisReply *reply;
 
-    c = redisConnect((char*)"127.0.0.1", 6379);
+    struct timeval timeout = { 1, 500000 }; // 1.5 seconds
+    c = redisConnectWithTimeout((char*)"127.0.0.2", 6379, timeout);
     if (c->err) {
         printf("Connection error: %s\n", c->errstr);
         exit(1);
@@ -17,7 +18,7 @@ int main(void) {
 
     /* PING server */
     reply = redisCommand(c,"PING");
-    printf("PONG: %s\n", reply->str);
+    printf("PING: %s\n", reply->str);
     freeReplyObject(reply);
 
     /* Set a key */