Redis

关注公众号 jb51net

关闭
首页 > 数据库 > Redis > redis hiredis-API函数

redis中hiredis-API函数的调用方法

作者:多云的夏天

这篇文章主要介绍了redis中hiredis-API函数的调用,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧

1.API函数查询

      http://github.com.redis/hiredis

2.直接在hiredis目录下新建 test_redis.c

2.1创建文件:     

目录下有hiredis     

2.2编译     

添加环境变量     

     

2.3运行       

 ./a.out                   直接运行     

 redis-cli get itcast  客户端运行

 2.4 文件编写

int mainset()
{
  redisContext *pr=redisConnect("127.0.0.1",6379);        //1.连接
  if(pr!=NULL)
  {
     redisReply *reply=redisCommand(pr,"set it%s ","abc"); //2.发命令 命令行里发送的
     freeReplyObject(reply);                               //3.销毁object
     reply=redisCommand(pr,"get itcase");
     puts(reply->str);
     freeReplyObject(reply);  
  }
}
int mainget()
{
  redisContext *pr=redisConnect("127.0.0.1",6379);       //1.连接
  if(pr!=NULL)
  {
     redisReply *reply=redisCommand(pr,"set it%s ","abc");//2.发命令 命令行里发送的
     freeReplyObject(reply);                              //3.销毁object
     reply=redisCommand(pr,"get itcase");
     puts(reply->str);
  }
}

到此这篇关于redis中hiredis-API函数的调用方法的文章就介绍到这了,更多相关redis hiredis-API函数内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文