Sort methods and add delKey method

This commit is contained in:
fbraem
2015-11-14 18:53:19 +01:00
parent f3dd36ac70
commit ed0b61c6e1
2 changed files with 479 additions and 592 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -36,12 +36,6 @@ public:
void testError(); void testError();
void testIncr(); void testIncr();
void testIncrBy(); void testIncrBy();
void testPing();
void testSet();
void testMSet();
void testMSetWithMap();
void testStrlen();
void testRPush();
void testLIndex(); void testLIndex();
void testLInsert(); void testLInsert();
void testLPop(); void testLPop();
@@ -49,13 +43,17 @@ public:
void testLSet(); void testLSet();
void testLTrim(); void testLTrim();
void testMulti(); void testMulti();
void testMSet();
void testPubSub(); void testMSetWithMap();
void testRPop(); void testPing();
void testRPoplPush();
void testPipeliningWithSendCommands(); void testPipeliningWithSendCommands();
void testPipeliningWithWriteCommand(); void testPipeliningWithWriteCommand();
void testPubSub();
void testSet();
void testStrlen();
void testRPop();
void testRPoplPush();
void testRPush();
void setUp(); void setUp();
void tearDown(); void tearDown();
@@ -64,6 +62,8 @@ public:
private: private:
void delKey(const std::string& key);
std::string _host; std::string _host;
unsigned _port; unsigned _port;
static bool _connected; static bool _connected;