mirror of
https://github.com/fluencelabs/redis
synced 2025-07-25 05:21:56 +00:00
deps
hiredis
adapters
.gitignore
CHANGELOG.md
COPYING
Makefile
README.md
async.c
async.h
dict.c
dict.h
example-ae.c
example-libev.c
example-libevent.c
example.c
fmacros.h
hiredis.c
hiredis.h
net.c
net.h
sds.c
sds.h
test.c
jemalloc
linenoise
lua
Makefile
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
Changelog
INSTALL
MANIFESTO
Makefile
README
TODO
redis.conf
runtest
69 lines
1.8 KiB
C
69 lines
1.8 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "hiredis.h"
|
|
|
|
int main(void) {
|
|
unsigned int j;
|
|
redisContext *c;
|
|
redisReply *reply;
|
|
|
|
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);
|
|
}
|
|
|
|
/* PING server */
|
|
reply = redisCommand(c,"PING");
|
|
printf("PING: %s\n", reply->str);
|
|
freeReplyObject(reply);
|
|
|
|
/* Set a key */
|
|
reply = redisCommand(c,"SET %s %s", "foo", "hello world");
|
|
printf("SET: %s\n", reply->str);
|
|
freeReplyObject(reply);
|
|
|
|
/* Set a key using binary safe API */
|
|
reply = redisCommand(c,"SET %b %b", "bar", 3, "hello", 5);
|
|
printf("SET (binary API): %s\n", reply->str);
|
|
freeReplyObject(reply);
|
|
|
|
/* Try a GET and two INCR */
|
|
reply = redisCommand(c,"GET foo");
|
|
printf("GET foo: %s\n", reply->str);
|
|
freeReplyObject(reply);
|
|
|
|
reply = redisCommand(c,"INCR counter");
|
|
printf("INCR counter: %lld\n", reply->integer);
|
|
freeReplyObject(reply);
|
|
/* again ... */
|
|
reply = redisCommand(c,"INCR counter");
|
|
printf("INCR counter: %lld\n", reply->integer);
|
|
freeReplyObject(reply);
|
|
|
|
/* Create a list of numbers, from 0 to 9 */
|
|
reply = redisCommand(c,"DEL mylist");
|
|
freeReplyObject(reply);
|
|
for (j = 0; j < 10; j++) {
|
|
char buf[64];
|
|
|
|
snprintf(buf,64,"%d",j);
|
|
reply = redisCommand(c,"LPUSH mylist element-%s", buf);
|
|
freeReplyObject(reply);
|
|
}
|
|
|
|
/* Let's check what we have inside the list */
|
|
reply = redisCommand(c,"LRANGE mylist 0 -1");
|
|
if (reply->type == REDIS_REPLY_ARRAY) {
|
|
for (j = 0; j < reply->elements; j++) {
|
|
printf("%u) %s\n", j, reply->element[j]->str);
|
|
}
|
|
}
|
|
freeReplyObject(reply);
|
|
|
|
return 0;
|
|
}
|