This repository was archived by the owner on Feb 26, 2020. It is now read-only.

Description
Is it possible to have a client test implementation like the one in python please ?
In the README or in the ./test/ directory.
Something like this... idk :
#include <iostream>
#include "../lib/Client.h"
int main(void)
{
SOCKETDESC scktd;
Client memcache_client(&scktd);
if(memcache_client.connect("127.0.0.1", 11211))
{
std::cout << "[+] Success connection has been etablished with the memcached server !";
//memcache_client.set("key","my value !");
}
else
{
std::cout << "[-] Error connection with memcached server !";
}
std::cout << "[-] Test !\n";
return 0;
}
Please help !