加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cloud.cpp 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
刘枭雄 提交于 2022-04-02 16:05 . first version
#include"client.hpp"
void DataTest()
{
/*
cloud::FileUtil("./hello.txt").Write("nihao\n");
cloud::FileUtil("./hi.txt").Write("hi\n");
_data->Insert("./hello.txt");
_data->Insert("./hi.txt");
std::vector<std::pair<std::string, std::string>> arry;
std::cout << "--------------------insert&all---------------------\n";
_data->SelectAll(&arry);
for (auto& a : arry)
{
std::cout << a.first << "<==>" << a.second << std::endl;
}
std::cout << "------------------updata-------------------\n";
cloud::FileUtil("./hi.txt").Write("ʵDz֪Щʲô");
_data->Update("./hi.txt");
std::string etag;
_data->SelectOne("./hi.txt", &etag);
std::cout << "hi.txt<==>" << etag << std::endl;
std::cout << "-------------------delete--------------------\n";
_data->Delete("./hello.txt");
arry.clear();
_data->SelectAll(&arry);
for (auto& a : arry)
{
std::cout << a.first << "<==>" << a.second << std::endl;
}
*/
cloud::DataManager* _data = new cloud::DataManager();
std::vector<std::pair<std::string, std::string>> arry;
_data->SelectAll(&arry);
for (auto& a : arry)
{
std::cout << a.first << "<==>" << a.second << std::endl;
}
return;
}
int main()
{
cloud::Client client("192.168.30.129", 9090);
client.RunModule();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化