├── .gitignore ├── README.md ├── src ├── RedisClient.cpp └── RedisClient.hpp └── test ├── 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 ├── lib ├── linux │ └── libhiredis.a └── mac │ └── libhiredis.a ├── main.cpp ├── makefile └── redis ├── async.h ├── dict.h ├── fmacros.h ├── hiredis.h ├── net.h ├── read.h ├── sds.h └── win32.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/README.md -------------------------------------------------------------------------------- /src/RedisClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/src/RedisClient.cpp -------------------------------------------------------------------------------- /src/RedisClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/src/RedisClient.hpp -------------------------------------------------------------------------------- /test/TestBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestBase.cpp -------------------------------------------------------------------------------- /test/TestBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestBase.hpp -------------------------------------------------------------------------------- /test/TestClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestClient.cpp -------------------------------------------------------------------------------- /test/TestClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestClient.hpp -------------------------------------------------------------------------------- /test/TestConcur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestConcur.cpp -------------------------------------------------------------------------------- /test/TestConcur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestConcur.hpp -------------------------------------------------------------------------------- /test/TestGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestGeneric.cpp -------------------------------------------------------------------------------- /test/TestGeneric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestGeneric.hpp -------------------------------------------------------------------------------- /test/TestHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestHash.cpp -------------------------------------------------------------------------------- /test/TestHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestHash.hpp -------------------------------------------------------------------------------- /test/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestList.cpp -------------------------------------------------------------------------------- /test/TestList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestList.hpp -------------------------------------------------------------------------------- /test/TestSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestSet.cpp -------------------------------------------------------------------------------- /test/TestSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestSet.hpp -------------------------------------------------------------------------------- /test/TestString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestString.cpp -------------------------------------------------------------------------------- /test/TestString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestString.hpp -------------------------------------------------------------------------------- /test/TestZset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestZset.cpp -------------------------------------------------------------------------------- /test/TestZset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/TestZset.hpp -------------------------------------------------------------------------------- /test/lib/linux/libhiredis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/lib/linux/libhiredis.a -------------------------------------------------------------------------------- /test/lib/mac/libhiredis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/lib/mac/libhiredis.a -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/makefile -------------------------------------------------------------------------------- /test/redis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/async.h -------------------------------------------------------------------------------- /test/redis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/dict.h -------------------------------------------------------------------------------- /test/redis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/fmacros.h -------------------------------------------------------------------------------- /test/redis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/hiredis.h -------------------------------------------------------------------------------- /test/redis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/net.h -------------------------------------------------------------------------------- /test/redis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/read.h -------------------------------------------------------------------------------- /test/redis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/sds.h -------------------------------------------------------------------------------- /test/redis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn246/redis_client/HEAD/test/redis/win32.h --------------------------------------------------------------------------------