资源简介
网际风 http://www.nezip.net 崇尚简洁实用。示例将Hiredis的操作封装为两个导出函数 Set 与 Get,
支持 Unicode 编码方式,支持二进制读写,有断线重连功能,可以使用静态库或动态库。
唯一实时Hiredis.dll 动态库方式。示例在 Win 10 VS2015 环境下编译通过。
代码片段和文件信息
// Client.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include
#include “Client.h“
int main(void)
{
CRedisDll redis;
struct testStruct
{
int i = 10;
int j = 20;
char k[32] = “abcd“;
};
testStruct test;
redisReply* reply = nullptr;
while (!reply)
{
redis.Set(“foo“ “hello zoujiaqing!“ -1 3);
redis.Set(“test:abcd“ &test sizeof test 300);
reply = redis.Get(“test:abcd“ 300);
Sleep(10);
}
testStruct* pTest = (testStruct*)reply->str;
getchar();
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 244 2017-04-02 17:58 使用说明.txt
文件 551 2017-04-02 17:35 Client\Client.cpp
文件 2127 2017-04-02 17:26 Client\Client.h
文件 8207 2017-04-02 13:02 Client\Client.vcxproj
文件 1509 2017-04-02 11:16 Client\Client.vcxproj.filters
文件 165 2017-04-02 08:33 Client\Client.vcxproj.user
文件 1503 2017-04-01 21:05 Client\ReadMe.txt
文件 210 2017-04-01 21:05 Client\stdafx.cpp
文件 234 2017-04-01 21:05 Client\stdafx.h
文件 240 2017-04-01 21:05 Client\targetver.h
文件 57 2013-09-13 15:01 hiredis\.gitignore
文件 4346 2016-05-17 21:20 hiredis\adapters\ae.h
文件 4734 2016-05-17 21:20 hiredis\adapters\libev.h
文件 4088 2016-05-17 21:20 hiredis\adapters\libevent.h
文件 22083 2017-04-02 07:45 hiredis\async.c
文件 5203 2016-05-17 21:20 hiredis\async.h
文件 519 2013-09-13 15:01 hiredis\CHANGELOG.md
文件 1588 2013-09-13 15:01 hiredis\COPYING
文件 12614 2017-04-02 07:45 hiredis\dict.c
文件 4982 2016-05-17 21:20 hiredis\dict.h
文件 1572 2016-05-17 21:19 hiredis\example-ae.c
文件 1455 2016-05-17 21:19 hiredis\example-libev.c
文件 1506 2016-05-17 21:19 hiredis\example-libevent.c
文件 1944 2016-05-17 21:19 hiredis\example.c
文件 319 2016-05-17 21:20 hiredis\fmacros.h
文件 35701 2017-04-02 15:55 hiredis\hiredis.c
文件 9735 2017-04-02 07:45 hiredis\hiredis.h
文件 4493 2013-09-13 15:01 hiredis\Makefile
文件 14891 2017-04-02 07:45 hiredis\net.c
文件 2376 2016-05-17 21:20 hiredis\net.h
............此处省略111个文件信息
相关资源
- VC++基于OpenGL模拟的一个3维空间模型
- Windows扩展命令程序(源码)
- LabwindowsCVI 串口编程及事例.docx
- 基于VC++的SolidWorks二次开发SolidWorks
- VC6 USB开发源码
- VC操作SQLSERVER数据库
- aes加解密(vc源程序)
- Windows_API_函数大全 C/C++
- vc_串口通讯
- 吕鑫vc6c++数据结构视频源码
- 派克变换VC++源码(附文档)
- 基于opencv漫水填充算法综合
- VC++ 串口
- VC++ 大富翁4_大富翁游戏源码
- MFC的异步网络通讯应用程序
- VC++ 摄像头视频采集与回放源程序
- 转 VC++ 实现电子邮件(Email)发送
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- VC++ 服务程序编写及安装与卸载
- VC++6.0番茄西红柿VAXvirsual assist X完美破
- VC编程助手2010破解版(原名VA_X_10.6.
- 基于改进的fcm算法的图像分割vc++
- VC++6.0 绿色版,免安装,非常好用。
- Microsoft Visual C++ 2005 Redistributable Pack
- VC++MFC课程设计的学生成绩管理系统
- VC6查找与替换插件
- 大智慧365DLL插件设计
- Microsoft Visual C++ 2010 Redistributable Pack
- VC经典教程等chm格式学习资料包
- 基于VC、MATLAB的汽车制动性能仿真
评论
共有 条评论