2013-07-11

The C++ API for SSDB

Views: 5914 | Add Comments
#include "link.h"

Link *link = Link::connect(ip, port);
const std::vector<Bytes> *resp = link->request("get", "a");
if(resp == NULL){
    // error
}else{
    // ok
}
Posted by ideawu at 2013-07-11 11:32:37

Leave a Comment