]>
git.saurik.com Git - redis.git/blob - deps/hiredis/example-ae.c
7 #include "adapters/ae.h"
9 /* Put event loop in the global scope, so it can be explicitly stopped */
10 static aeEventLoop
*loop
;
12 void getCallback(redisAsyncContext
*c
, void *r
, void *privdata
) {
13 redisReply
*reply
= r
;
14 if (reply
== NULL
) return;
15 printf("argv[%s]: %s\n", (char*)privdata
, reply
->str
);
17 /* Disconnect after receiving the reply to GET */
18 redisAsyncDisconnect(c
);
21 void connectCallback(const redisAsyncContext
*c
) {
23 printf("connected...\n");
26 void disconnectCallback(const redisAsyncContext
*c
, int status
) {
27 if (status
!= REDIS_OK
) {
28 printf("Error: %s\n", c
->errstr
);
30 printf("disconnected...\n");
34 int main (int argc
, char **argv
) {
35 signal(SIGPIPE
, SIG_IGN
);
37 redisAsyncContext
*c
= redisAsyncConnect("127.0.0.1", 6379);
39 /* Let *c leak for now... */
40 printf("Error: %s\n", c
->errstr
);
44 loop
= aeCreateEventLoop();
45 redisAeAttach(loop
, c
);
46 redisAsyncSetConnectCallback(c
,connectCallback
);
47 redisAsyncSetDisconnectCallback(c
,disconnectCallback
);
48 redisAsyncCommand(c
, NULL
, NULL
, "SET key %b", argv
[argc
-1], strlen(argv
[argc
-1]));
49 redisAsyncCommand(c
, getCallback
, (char*)"end-1", "GET key");