文件名称:redisclient:具有连接池的C ++的Redis客户端库
文件大小:11KB
文件格式:ZIP
更新时间:2024-06-12 08:21:36
C++
Redis客户端 具有连接池的C ++的Redis客户端库 建造 yum install libhiredis-dev git clone https://github.com/SourceInsight/RedisClient cd RedisClient ./build.sh 用法 // ip, port, min conneciton, max connection, db No, pool name RedisClient client( " 127.0.0.1 " , 6379, 2, 10, 5, " Test " ) ; try { client.set( " name " , " Michael " ) ; std::cout << client.get("name") << std::endl; } catch (c
【文件预览】:
redisclient-master
----.gitignore(8B)
----README.md(580B)
----build.sh(65B)
----tests()
--------test.cc(322B)
----src()
--------RedisException.h(403B)
--------RedisException.cc(356B)
--------hiredis.h(9KB)
--------RedisSynch.h(2KB)
--------RedisClient.cc(2KB)
--------RedisPool.h(2KB)
--------RedisPool.cc(7KB)
--------Makefile(313B)
--------RedisClient.h(1002B)