Linux qtcreator编程使用redis客户端hiredis

本文涉及的产品
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
云数据库 Tair(兼容Redis),内存型 2GB
简介: Linux qtcreator编程使用redis客户端hiredis

1. 安装hiredis,下载链接https://github.com/redis/hiredis

这时redis自带的官方的C语言API。Linux安装很简单:

[plain]  view plain  copy


# cd {redis-src}  

# cd deps/hiredis/  

# make  

# make install  

现在hiredis已经被安装于/usr/local/include/hiredis/和/usr/local/lib/下。




2.qtcreator的.pro文件如下:


TEMPLATE = app

CONFIG += console

CONFIG -= app_bundle

CONFIG -= qt


#not good

#LIBS += -L /usr/local/lib -lhiredis

LIBS += "/usr/local/lib/libhiredis.a"


SOURCES += main.c

说明一下,如果使用QMAKE_LFLAGS += -lhiredis,等价于LIBS += /usr/local/lib/libhiredis.so


编译通过,但是运行时会报错:error while loading shared libraries:libhiredis.so.1: cannot open shared object file: No such file or directory

此时需要在/etc/ld.so.conf中加入libhiredis.so所在的目录:/usr/local/lib/

然后在终端执行命令,使之生效:

[root@localhost etc]# ldconfig




3.demo

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#include <hiredis/hiredis.h>

int main(int argc, char *argv[])

{

   unsigned int j;

   redisContext *c;

   redisReply *reply;

   const char *hostname = (argc > 1) ? argv[1] : "127.0.0.1";

   int port = (argc > 2) ? atoi(argv[2]) : 6379;

   struct timeval timeout = { 1, 500000 }; // 1.5 seconds

   c = redisConnectWithTimeout(hostname, port, timeout);

   if (c == NULL || c->err) {

       if (c) {

           printf("Connection error: %s\n", c->errstr);

           redisFree(c);

       } else {

           printf("Connection error: can't allocate redis context\n");

       }

       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", (size_t) 3, "hello", (size_t) 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,"%u",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);

   /* Disconnects and frees the context */

   redisFree(c);

   return 0;

}

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore &nbsp; &nbsp; ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库&nbsp;ECS 实例和一台目标数据库&nbsp;RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&amp;RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
1月前
|
NoSQL Redis 数据安全/隐私保护
Redis 最流行的图形化界面下载及使用超详细教程(带安装包)! redis windows客户端下载
文章提供了Redis最流行的图形化界面工具Another Redis Desktop Manager的下载及使用教程,包括如何下载、解压、连接Redis服务器以及使用控制台和查看数据类型详细信息。
132 6
Redis 最流行的图形化界面下载及使用超详细教程(带安装包)! redis windows客户端下载
|
1月前
|
NoSQL Redis 数据库
Redis 图形化界面下载及使用超详细教程(带安装包)! redis windows下客户端下载
文章提供了Redis图形化界面工具的下载及使用教程,包括如何连接本地Redis服务器、操作键值对、查看日志和使用命令行等功能。
124 0
Redis 图形化界面下载及使用超详细教程(带安装包)! redis windows下客户端下载
|
2月前
|
Shell Linux
Linux shell编程学习笔记30:打造彩色的选项菜单
Linux shell编程学习笔记30:打造彩色的选项菜单
|
23天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
26天前
|
NoSQL 网络协议 算法
Redis 客户端连接
10月更文挑战第21天
28 1
|
1月前
|
存储 消息中间件 NoSQL
Redis 入门 - C#.NET Core客户端库六种选择
Redis 入门 - C#.NET Core客户端库六种选择
60 8
|
2月前
|
Shell Linux
Linux shell编程学习笔记82:w命令——一览无余
Linux shell编程学习笔记82:w命令——一览无余
|
2月前
|
JSON NoSQL Java
redis的java客户端的使用(Jedis、SpringDataRedis、SpringBoot整合redis、redisTemplate序列化及stringRedisTemplate序列化)
这篇文章介绍了在Java中使用Redis客户端的几种方法,包括Jedis、SpringDataRedis和SpringBoot整合Redis的操作。文章详细解释了Jedis的基本使用步骤,Jedis连接池的创建和使用,以及在SpringBoot项目中如何配置和使用RedisTemplate和StringRedisTemplate。此外,还探讨了RedisTemplate序列化的两种实践方案,包括默认的JDK序列化和自定义的JSON序列化,以及StringRedisTemplate的使用,它要求键和值都必须是String类型。
redis的java客户端的使用(Jedis、SpringDataRedis、SpringBoot整合redis、redisTemplate序列化及stringRedisTemplate序列化)
|
2月前
|
NoSQL Linux Redis
linux安装单机版redis详细步骤,及python连接redis案例
这篇文章提供了在Linux系统中安装单机版Redis的详细步骤,并展示了如何配置Redis为systemctl启动,以及使用Python连接Redis进行数据操作的案例。
71 2
|
2月前
|
NoSQL Linux Redis
linux之centos安装redis
linux之centos安装redis
下一篇
无影云桌面