# 3.9 redis-C++-API
Redis官方引入的c++库众多,但官方没有重点推荐使用哪个:
http://redis.cn/clients.html#c--
除此之外可以使用Redis官方提供的C语言实现的客户端hiredis,进行封装定制
```cpp
//redis.h
#ifndef _REDIS_H_
#define _REDIS_H_
#include <iostream>
#include <string.h>
#include <string>
#include <stdio.h>
#include <hiredis/hiredis.h>
class Redis {
public:
Redis(){}
~Redis() {
this->_connect = NULL;
this->_reply = NULL;
}
bool connect(std::string host, int port) {
this->_connect = redisConnect(host.c_str(), port);
if(this->_connect != NULL && this->_connect->err) {
printf("connect error: %s\n", this->_connect->errstr);
return 0;
}
return 1;
}
std::string get(std::string key) {
this->_reply = (redisReply*)redisCommand(this->_connect,
"GET %s", key.c_str());
std::string str = this->_reply->str;
freeReplyObject(this->_reply);
return str;
}
void set(std::string key, std::string value) {
redisCommand(this->_connect, "SET %s %s", key.c_str(), value.c_str());
}
private:
redisContext* _connect;
redisReply* _reply; };
#endif
```
```cpp
//main.cpp
#include "redis.h"
int main(void)
{
Redis *r = new Redis();
if(!r->connect("127.0.0.1", 6379)) {
printf("connect error!\n");
return 0;
}
r->set("name", "itcast cpp");
printf("Get the name is %s\n", r->get("name").c_str());
delete r;
return 0;
}
```
编译:
```bash
g++ redis.cpp -o redis -L/usr/local/lib/ -lhiredis
```
- 概要
- 1 分布式存储fastDFS
- 1.1 fastDFS 通用介绍
- 1.2 fastDFS安装和使用
- 1.3 基于fastDFS实现分布式
- 2 缓存数据库redis快速搭建
- 2.1 环境安装
- 2.2 redis数据类型
- 2.3 redis订阅发布模式
- 2.4 redis事务
- 2.5 redis备份
- 3 redis详细攻略
- 3.1 redis简介
- 3.2 redis使用场景
- 3.3 redis基本操作
- 3.4 redis数据类型
- 3.4.1 字符串
- 3.4.2 HASH-字典
- 3.4.3 List-列表
- 3.4.4 Set-集合
- 3.4.5 Sorted Set-有序集合
- 3.4.6 订阅-发布
- 3.4.7 事务
- 3.5 redis配置文件
- 3.6 持久化
- 3.7 redis性能测试
- 3.8 redis-C-API
- 3.9 redis-C++-API
- 3.10 总结与建议
- 4 memcache缓存数据库
- 4.1 什么是memcached
- 4.2 memcached的特征
- 4.3 memcached的内存管理
- 4.4 如何使用memcached
- 4.5 memcached参数详解
- 4.6 memcached安装
- 4.7 memcached-C客户端
- 4.8 memcached-C++客户端
- 5 Nginx
- 6 FastCGI
- 6.1 CGI
- 6.2 FastCGI
- 6.3 Nginx与FastCGI
- 7 Nginx上部署fastDFS
- 8 项目概要
- 8.1 上传文件功能
- 8.2 主界面显示与下载文件功能
- 8.3 注册功能
- 8.4 登陆功能
- 8.5 文件分类功能
- 8.6 个人网盘功能
- 8.8 秒传功能