当前位置:  软件>C/C++软件

Redis的C客户端 credis

    来源:    发布时间:2015-01-20

    本文导语:  Credis 是一个纯C 的 Redis 客户端开发包,示例代码: #include #include "credis.h"int main(int argc, char **argv){  REDIS rh;  char *val;  /* create handle to a Redis server running on localhost, port 6789,     with a 2 second response timeout */  rh = credis_connect(NULL, 678...

Credis 是一个纯C 的 Redis 客户端开发包,示例代码:

#include 

#include "credis.h"

int main(int argc, char **argv)
{
  REDIS rh;
  char *val;

  /* create handle to a Redis server running on localhost, port 6789,
     with a 2 second response timeout */
  rh = credis_connect(NULL, 6789, 2000);

  /* ping server */
  credis_ping(rh);

  /* set value of key "kalle" to "kula" */
  credis_set(rh, "kalle", "kula");

  /* get value of key "kalle" */
  credis_get(rh, "kalle", &val);
  printf("get kalle returned: %sn", val);

  /* close connection to redis server */
  credis_close(rh);

  return 0;
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • c/c++开源软件 iis7站长之家
  • Redis的Node.js扩展包 node_redis
  • redis和mongodb区别详细介绍
  • Redis 的 Java 实现 redis-protocol
  • Redis 2.8.19官网下载及Redis安装完整过程介绍
  • redis的搜索组件 redis-search4j
  • Redis 3.2.4官方下载地址及Redis安装完整过程介绍
  • 使用PHP导出Redis数据到另一个Redis中的代码
  • mongodb和redis哪个好?mongodb和redis比较
  • Redis on Windows
  • Redis Desktop Manager
  • Redis的持久化存储 redis-storage
  • Redis Cluster
  • Nginx-Redis
  • redis2-nginx-module
  • Redis 服务器监控系统 Angel
  • php Redis 队列服务的简单示例
  • Redis2NginxModule
  • 为Redis提供HTTP API及连接池功能 RedBridge
  • Mod_redis
  • Redis-LevelDB


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3