hiRedis 是 Redis 官方指定的 C 语言客户端开发包,支持 Redis 完整的命令集、管线以及事件驱动编程。
示例代码:
redisContext *c = redisConNECt("127.0.0.1", 6379); if (c->err) { printf("Error: %s\n", c->errstr); // handle error } reply = redisCommand(context, "SET foo %s", value);
redisContext *c = redisConNECt("127.0.0.1", 6379); if (c->err) { printf("Error: %s\n", c->errstr); // handle error }
reply = redisCommand(context, "SET foo %s", value);