├── .gitignore ├── Demo_2020-02-15 ├── 00_server_bins │ └── run_LoginServer.bat ├── APIServer │ ├── APIServer.csproj │ ├── APIServer.sln │ ├── Controllers │ │ ├── AccountController.cs │ │ └── LoginController.cs │ ├── DBRedis.cs │ ├── LoginServer.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ServerOptions.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ └── 11.txt ├── Client │ ├── App.config │ ├── ClientSimpleTcp.cs │ ├── DevLog.cs │ ├── Packet.cs │ ├── PacketBufferManager.cs │ ├── PacketDefine.cs │ ├── PacketProcessForm.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── csharp_test_client.csproj │ ├── csharp_test_client.sln │ ├── mainForm.Designer.cs │ ├── mainForm.cs │ ├── mainForm.resx │ └── packages.config └── GameServer │ ├── ErrorCode.h │ ├── GameServer.h │ ├── GameServer.sln │ ├── GameServer.vcxproj │ ├── GameServer.vcxproj.filters │ ├── Packet.h │ ├── PacketManager.cpp │ ├── PacketManager.h │ ├── RedisManager.h │ ├── RedisTaskDefine.h │ ├── Room.h │ ├── RoomManager.h │ ├── ServerNetwork │ ├── ClientInfo.h │ ├── Define.h │ └── IOCPServer.h │ ├── User.h │ ├── UserManager.h │ └── main.cpp ├── README.md ├── RedisCpp-hiredis ├── CRedisConn_test.cpp ├── RedisCpp-hiredis.md ├── Samples │ ├── Connect │ │ ├── Connect.cpp │ │ ├── Connect.sln │ │ ├── Connect.vcxproj │ │ └── Connect.vcxproj.filters │ ├── GetSet │ │ ├── GetSet.sln │ │ ├── GetSet.vcxproj │ │ ├── GetSet.vcxproj.filters │ │ └── main.cpp │ └── List │ │ ├── List.sln │ │ ├── List.vcxproj │ │ ├── main.cpp │ │ └── premake5.lua ├── images │ ├── 001.png │ └── 002.png └── src │ └── CRedisConn.h ├── hiredis ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING ├── Makefile ├── README.md ├── VS2019 │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── CMakeCache.txt │ ├── Debug │ │ ├── hiredis.lib │ │ └── hiredis.pdb │ ├── INSTALL.vcxproj │ ├── INSTALL.vcxproj.filters │ ├── Release │ │ └── hiredis.lib │ ├── ZERO_CHECK.vcxproj │ ├── ZERO_CHECK.vcxproj.filters │ ├── cmake_install.cmake │ ├── hiredis.pc │ ├── hiredis.sln │ ├── hiredis.vcxproj │ └── hiredis.vcxproj.filters ├── adapters │ ├── ae.h │ ├── glib.h │ ├── ivykis.h │ ├── libev.h │ ├── libevent.h │ ├── libuv.h │ ├── macosx.h │ └── qt.h ├── alloc.c ├── alloc.h ├── appveyor.yml ├── async.c ├── async.h ├── async_private.h ├── dict.c ├── dict.h ├── examples │ ├── CMakeLists.txt │ ├── example-ae.c │ ├── example-glib.c │ ├── example-ivykis.c │ ├── example-libev.c │ ├── example-libevent-ssl.c │ ├── example-libevent.c │ ├── example-libuv.c │ ├── example-macosx.c │ ├── example-qt.cpp │ ├── example-qt.h │ ├── example-ssl.c │ └── example.c ├── fmacros.h ├── hiredis.c ├── hiredis.h ├── hiredis.pc.in ├── hiredis_ssl.h ├── hiredis_ssl.pc.in ├── net.c ├── net.h ├── read.c ├── read.h ├── sds.c ├── sds.h ├── sdsalloc.h ├── sockcompat.c ├── sockcompat.h ├── ssl.c ├── test.c ├── test.sh └── win32.h ├── r3c ├── CMakeLists.txt ├── Makefile ├── README.md ├── deps │ ├── CMakeLists.txt │ └── hiredis-0.14.0.tar.gz ├── r3c.cpp ├── r3c.h ├── sha1.cpp ├── sha1.h ├── tests │ ├── CMakeLists.txt │ ├── Makefile │ ├── r3c_and_coroutine.cpp │ ├── r3c_cmd.cpp │ ├── r3c_robust.cpp │ ├── r3c_stream.cpp │ ├── r3c_stress.cpp │ ├── r3c_test.cpp │ ├── redis_command_extension.cpp │ └── redismodule.h ├── utils.cpp ├── utils.h └── vs_solution │ ├── r3c.sln │ ├── r3c.vcxproj │ └── r3c.vcxproj.filters └── redis_client ├── .gitignore ├── redis_client.md ├── src ├── RedisClient.cpp └── RedisClient.hpp ├── test ├── Test.sln ├── Test.vcxproj ├── Test.vcxproj.filters ├── TestBase.cpp ├── TestBase.hpp ├── TestClient.cpp ├── TestClient.hpp ├── TestConcur.cpp ├── TestConcur.hpp ├── TestGeneric.cpp ├── TestGeneric.hpp ├── TestHash.cpp ├── TestHash.hpp ├── TestList.cpp ├── TestList.hpp ├── TestSet.cpp ├── TestSet.hpp ├── TestString.cpp ├── TestString.hpp ├── TestZset.cpp ├── TestZset.hpp ├── Util.h ├── main.cpp ├── makefile └── premake5.lua └── vs_solution ├── RedisClient.sln ├── RedisClient.vcxproj └── RedisClient.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo_2020-02-15/00_server_bins/run_LoginServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/00_server_bins/run_LoginServer.bat -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/APIServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/APIServer.csproj -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/APIServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/APIServer.sln -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/DBRedis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/DBRedis.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/LoginServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/LoginServer.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/Program.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/ServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/ServerOptions.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/Startup.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/appsettings.Development.json -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/APIServer/appsettings.json -------------------------------------------------------------------------------- /Demo_2020-02-15/APIServer/wwwroot/11.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/App.config -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/ClientSimpleTcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/ClientSimpleTcp.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/DevLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/DevLog.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Packet.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/PacketBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/PacketBufferManager.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/PacketDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/PacketDefine.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/PacketProcessForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/PacketProcessForm.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Program.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/csharp_test_client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/csharp_test_client.csproj -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/csharp_test_client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/csharp_test_client.sln -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/mainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/mainForm.Designer.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/mainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/mainForm.cs -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/mainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/mainForm.resx -------------------------------------------------------------------------------- /Demo_2020-02-15/Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/Client/packages.config -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/ErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/ErrorCode.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/GameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/GameServer.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/GameServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/GameServer.sln -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/GameServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/GameServer.vcxproj -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/GameServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/GameServer.vcxproj.filters -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/Packet.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/PacketManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/PacketManager.cpp -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/PacketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/PacketManager.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/RedisManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/RedisManager.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/RedisTaskDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/RedisTaskDefine.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/Room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/Room.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/RoomManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/RoomManager.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/ServerNetwork/ClientInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/ServerNetwork/ClientInfo.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/ServerNetwork/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/ServerNetwork/Define.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/ServerNetwork/IOCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/ServerNetwork/IOCPServer.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/User.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/UserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/UserManager.h -------------------------------------------------------------------------------- /Demo_2020-02-15/GameServer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/Demo_2020-02-15/GameServer/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/README.md -------------------------------------------------------------------------------- /RedisCpp-hiredis/CRedisConn_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/CRedisConn_test.cpp -------------------------------------------------------------------------------- /RedisCpp-hiredis/RedisCpp-hiredis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/RedisCpp-hiredis.md -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/Connect/Connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/Connect/Connect.cpp -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/Connect/Connect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/Connect/Connect.sln -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/Connect/Connect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/Connect/Connect.vcxproj -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/Connect/Connect.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/Connect/Connect.vcxproj.filters -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/GetSet/GetSet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/GetSet/GetSet.sln -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/GetSet/GetSet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/GetSet/GetSet.vcxproj -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/GetSet/GetSet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/GetSet/GetSet.vcxproj.filters -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/GetSet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/GetSet/main.cpp -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/List/List.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/List/List.sln -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/List/List.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/List/List.vcxproj -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/List/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/List/main.cpp -------------------------------------------------------------------------------- /RedisCpp-hiredis/Samples/List/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/Samples/List/premake5.lua -------------------------------------------------------------------------------- /RedisCpp-hiredis/images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/images/001.png -------------------------------------------------------------------------------- /RedisCpp-hiredis/images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/images/002.png -------------------------------------------------------------------------------- /RedisCpp-hiredis/src/CRedisConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/RedisCpp-hiredis/src/CRedisConn.h -------------------------------------------------------------------------------- /hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/.gitignore -------------------------------------------------------------------------------- /hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/.travis.yml -------------------------------------------------------------------------------- /hiredis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/CHANGELOG.md -------------------------------------------------------------------------------- /hiredis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/CMakeLists.txt -------------------------------------------------------------------------------- /hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/COPYING -------------------------------------------------------------------------------- /hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/Makefile -------------------------------------------------------------------------------- /hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/README.md -------------------------------------------------------------------------------- /hiredis/VS2019/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /hiredis/VS2019/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /hiredis/VS2019/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/CMakeCache.txt -------------------------------------------------------------------------------- /hiredis/VS2019/Debug/hiredis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/Debug/hiredis.lib -------------------------------------------------------------------------------- /hiredis/VS2019/Debug/hiredis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/Debug/hiredis.pdb -------------------------------------------------------------------------------- /hiredis/VS2019/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/INSTALL.vcxproj -------------------------------------------------------------------------------- /hiredis/VS2019/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /hiredis/VS2019/Release/hiredis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/Release/hiredis.lib -------------------------------------------------------------------------------- /hiredis/VS2019/ZERO_CHECK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/ZERO_CHECK.vcxproj -------------------------------------------------------------------------------- /hiredis/VS2019/ZERO_CHECK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/ZERO_CHECK.vcxproj.filters -------------------------------------------------------------------------------- /hiredis/VS2019/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/cmake_install.cmake -------------------------------------------------------------------------------- /hiredis/VS2019/hiredis.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/hiredis.pc -------------------------------------------------------------------------------- /hiredis/VS2019/hiredis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/hiredis.sln -------------------------------------------------------------------------------- /hiredis/VS2019/hiredis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/hiredis.vcxproj -------------------------------------------------------------------------------- /hiredis/VS2019/hiredis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/VS2019/hiredis.vcxproj.filters -------------------------------------------------------------------------------- /hiredis/adapters/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/ae.h -------------------------------------------------------------------------------- /hiredis/adapters/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/glib.h -------------------------------------------------------------------------------- /hiredis/adapters/ivykis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/ivykis.h -------------------------------------------------------------------------------- /hiredis/adapters/libev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/libev.h -------------------------------------------------------------------------------- /hiredis/adapters/libevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/libevent.h -------------------------------------------------------------------------------- /hiredis/adapters/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/libuv.h -------------------------------------------------------------------------------- /hiredis/adapters/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/macosx.h -------------------------------------------------------------------------------- /hiredis/adapters/qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/adapters/qt.h -------------------------------------------------------------------------------- /hiredis/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/alloc.c -------------------------------------------------------------------------------- /hiredis/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/alloc.h -------------------------------------------------------------------------------- /hiredis/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/appveyor.yml -------------------------------------------------------------------------------- /hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/async.c -------------------------------------------------------------------------------- /hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/async.h -------------------------------------------------------------------------------- /hiredis/async_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/async_private.h -------------------------------------------------------------------------------- /hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/dict.c -------------------------------------------------------------------------------- /hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/dict.h -------------------------------------------------------------------------------- /hiredis/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/CMakeLists.txt -------------------------------------------------------------------------------- /hiredis/examples/example-ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-ae.c -------------------------------------------------------------------------------- /hiredis/examples/example-glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-glib.c -------------------------------------------------------------------------------- /hiredis/examples/example-ivykis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-ivykis.c -------------------------------------------------------------------------------- /hiredis/examples/example-libev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-libev.c -------------------------------------------------------------------------------- /hiredis/examples/example-libevent-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-libevent-ssl.c -------------------------------------------------------------------------------- /hiredis/examples/example-libevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-libevent.c -------------------------------------------------------------------------------- /hiredis/examples/example-libuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-libuv.c -------------------------------------------------------------------------------- /hiredis/examples/example-macosx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-macosx.c -------------------------------------------------------------------------------- /hiredis/examples/example-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-qt.cpp -------------------------------------------------------------------------------- /hiredis/examples/example-qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-qt.h -------------------------------------------------------------------------------- /hiredis/examples/example-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example-ssl.c -------------------------------------------------------------------------------- /hiredis/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/examples/example.c -------------------------------------------------------------------------------- /hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/fmacros.h -------------------------------------------------------------------------------- /hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/hiredis.c -------------------------------------------------------------------------------- /hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/hiredis.h -------------------------------------------------------------------------------- /hiredis/hiredis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/hiredis.pc.in -------------------------------------------------------------------------------- /hiredis/hiredis_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/hiredis_ssl.h -------------------------------------------------------------------------------- /hiredis/hiredis_ssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/hiredis_ssl.pc.in -------------------------------------------------------------------------------- /hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/net.c -------------------------------------------------------------------------------- /hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/net.h -------------------------------------------------------------------------------- /hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/read.c -------------------------------------------------------------------------------- /hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/read.h -------------------------------------------------------------------------------- /hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/sds.c -------------------------------------------------------------------------------- /hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/sds.h -------------------------------------------------------------------------------- /hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /hiredis/sockcompat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/sockcompat.c -------------------------------------------------------------------------------- /hiredis/sockcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/sockcompat.h -------------------------------------------------------------------------------- /hiredis/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/ssl.c -------------------------------------------------------------------------------- /hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/test.c -------------------------------------------------------------------------------- /hiredis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/test.sh -------------------------------------------------------------------------------- /hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/hiredis/win32.h -------------------------------------------------------------------------------- /r3c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/CMakeLists.txt -------------------------------------------------------------------------------- /r3c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/Makefile -------------------------------------------------------------------------------- /r3c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/README.md -------------------------------------------------------------------------------- /r3c/deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/deps/CMakeLists.txt -------------------------------------------------------------------------------- /r3c/deps/hiredis-0.14.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/deps/hiredis-0.14.0.tar.gz -------------------------------------------------------------------------------- /r3c/r3c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/r3c.cpp -------------------------------------------------------------------------------- /r3c/r3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/r3c.h -------------------------------------------------------------------------------- /r3c/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/sha1.cpp -------------------------------------------------------------------------------- /r3c/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/sha1.h -------------------------------------------------------------------------------- /r3c/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/CMakeLists.txt -------------------------------------------------------------------------------- /r3c/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/Makefile -------------------------------------------------------------------------------- /r3c/tests/r3c_and_coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_and_coroutine.cpp -------------------------------------------------------------------------------- /r3c/tests/r3c_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_cmd.cpp -------------------------------------------------------------------------------- /r3c/tests/r3c_robust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_robust.cpp -------------------------------------------------------------------------------- /r3c/tests/r3c_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_stream.cpp -------------------------------------------------------------------------------- /r3c/tests/r3c_stress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_stress.cpp -------------------------------------------------------------------------------- /r3c/tests/r3c_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/r3c_test.cpp -------------------------------------------------------------------------------- /r3c/tests/redis_command_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/redis_command_extension.cpp -------------------------------------------------------------------------------- /r3c/tests/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/tests/redismodule.h -------------------------------------------------------------------------------- /r3c/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/utils.cpp -------------------------------------------------------------------------------- /r3c/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/utils.h -------------------------------------------------------------------------------- /r3c/vs_solution/r3c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/vs_solution/r3c.sln -------------------------------------------------------------------------------- /r3c/vs_solution/r3c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/vs_solution/r3c.vcxproj -------------------------------------------------------------------------------- /r3c/vs_solution/r3c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/r3c/vs_solution/r3c.vcxproj.filters -------------------------------------------------------------------------------- /redis_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/.gitignore -------------------------------------------------------------------------------- /redis_client/redis_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/redis_client.md -------------------------------------------------------------------------------- /redis_client/src/RedisClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/src/RedisClient.cpp -------------------------------------------------------------------------------- /redis_client/src/RedisClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/src/RedisClient.hpp -------------------------------------------------------------------------------- /redis_client/test/Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/Test.sln -------------------------------------------------------------------------------- /redis_client/test/Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/Test.vcxproj -------------------------------------------------------------------------------- /redis_client/test/Test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/Test.vcxproj.filters -------------------------------------------------------------------------------- /redis_client/test/TestBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestBase.cpp -------------------------------------------------------------------------------- /redis_client/test/TestBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestBase.hpp -------------------------------------------------------------------------------- /redis_client/test/TestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestClient.cpp -------------------------------------------------------------------------------- /redis_client/test/TestClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestClient.hpp -------------------------------------------------------------------------------- /redis_client/test/TestConcur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestConcur.cpp -------------------------------------------------------------------------------- /redis_client/test/TestConcur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestConcur.hpp -------------------------------------------------------------------------------- /redis_client/test/TestGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestGeneric.cpp -------------------------------------------------------------------------------- /redis_client/test/TestGeneric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestGeneric.hpp -------------------------------------------------------------------------------- /redis_client/test/TestHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestHash.cpp -------------------------------------------------------------------------------- /redis_client/test/TestHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestHash.hpp -------------------------------------------------------------------------------- /redis_client/test/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestList.cpp -------------------------------------------------------------------------------- /redis_client/test/TestList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestList.hpp -------------------------------------------------------------------------------- /redis_client/test/TestSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestSet.cpp -------------------------------------------------------------------------------- /redis_client/test/TestSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestSet.hpp -------------------------------------------------------------------------------- /redis_client/test/TestString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestString.cpp -------------------------------------------------------------------------------- /redis_client/test/TestString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestString.hpp -------------------------------------------------------------------------------- /redis_client/test/TestZset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestZset.cpp -------------------------------------------------------------------------------- /redis_client/test/TestZset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/TestZset.hpp -------------------------------------------------------------------------------- /redis_client/test/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/Util.h -------------------------------------------------------------------------------- /redis_client/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/main.cpp -------------------------------------------------------------------------------- /redis_client/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/makefile -------------------------------------------------------------------------------- /redis_client/test/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/test/premake5.lua -------------------------------------------------------------------------------- /redis_client/vs_solution/RedisClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/vs_solution/RedisClient.sln -------------------------------------------------------------------------------- /redis_client/vs_solution/RedisClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/vs_solution/RedisClient.vcxproj -------------------------------------------------------------------------------- /redis_client/vs_solution/RedisClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacking75/examples_cpp_redis/HEAD/redis_client/vs_solution/RedisClient.vcxproj.filters --------------------------------------------------------------------------------