Work on AsyncClient and add execute<T> method

This commit is contained in:
fbraem
2015-11-02 08:06:32 +01:00
parent 2d0c312be3
commit 064f8ef2de
9 changed files with 340 additions and 113 deletions

View File

@@ -17,7 +17,7 @@
#include "Poco/Redis/Redis.h"
#include "Poco/Redis/Client.h"
#include "Poco/Redis/AsyncClient.h"
#include "CppUnit/TestCase.h"
@@ -41,6 +41,9 @@ public:
void testRPush();
void testLIndex();
void testMulti();
void testPubSub();
void testPipeliningWithSendCommands();
void testPipeliningWithWriteCommand();
@@ -54,7 +57,7 @@ private:
std::string _host;
unsigned _port;
static bool _connected;
static Poco::Redis::Client _redis;
static Poco::Redis::AsyncClient _redis;
};