summaryrefslogtreecommitdiff
path: root/deps/hiredis/examples/example-ivykis.c
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2020-08-06 12:41:58 -0700
committermichael-grunder <michael.grunder@gmail.com>2020-08-06 12:41:58 -0700
commit5f536b5d23082fe1251c6627a835f3a75803c3e0 (patch)
tree42a55715e03e4ace424daf30a2b8b9da5871937b /deps/hiredis/examples/example-ivykis.c
parent3ddb6ffa34740b877c759e9f0bd422f33424cd3b (diff)
parent7ee5a41aac7e5abc90d050fa509fa953ca7f1da1 (diff)
downloadredis-5f536b5d23082fe1251c6627a835f3a75803c3e0.tar.gz
Merge commit '7ee5a41aac7e5abc90d050fa509fa953ca7f1da1' as 'deps/hiredis'
Diffstat (limited to 'deps/hiredis/examples/example-ivykis.c')
-rw-r--r--deps/hiredis/examples/example-ivykis.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/deps/hiredis/examples/example-ivykis.c b/deps/hiredis/examples/example-ivykis.c
new file mode 100644
index 000000000..f57dc3887
--- /dev/null
+++ b/deps/hiredis/examples/example-ivykis.c
@@ -0,0 +1,60 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <signal.h>
+
+#include <hiredis.h>
+#include <async.h>
+#include <adapters/ivykis.h>
+
+void getCallback(redisAsyncContext *c, void *r, void *privdata) {
+ redisReply *reply = r;
+ if (reply == NULL) return;
+ printf("argv[%s]: %s\n", (char*)privdata, reply->str);
+
+ /* Disconnect after receiving the reply to GET */
+ redisAsyncDisconnect(c);
+}
+
+void connectCallback(const redisAsyncContext *c, int status) {
+ if (status != REDIS_OK) {
+ printf("Error: %s\n", c->errstr);
+ return;
+ }
+ printf("Connected...\n");
+}
+
+void disconnectCallback(const redisAsyncContext *c, int status) {
+ if (status != REDIS_OK) {
+ printf("Error: %s\n", c->errstr);
+ return;
+ }
+ printf("Disconnected...\n");
+}
+
+int main (int argc, char **argv) {
+#ifndef _WIN32
+ signal(SIGPIPE, SIG_IGN);
+#endif
+
+ iv_init();
+
+ redisAsyncContext *c = redisAsyncConnect("127.0.0.1", 6379);
+ if (c->err) {
+ /* Let *c leak for now... */
+ printf("Error: %s\n", c->errstr);
+ return 1;
+ }
+
+ redisIvykisAttach(c);
+ redisAsyncSetConnectCallback(c,connectCallback);
+ redisAsyncSetDisconnectCallback(c,disconnectCallback);
+ redisAsyncCommand(c, NULL, NULL, "SET key %b", argv[argc-1], strlen(argv[argc-1]));
+ redisAsyncCommand(c, getCallback, (char*)"end-1", "GET key");
+
+ iv_main();
+
+ iv_deinit();
+
+ return 0;
+}