6 Star 8 Fork 4

yedf/leveldbd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dumplog.cc 466 Bytes
一键复制 编辑 原始数据 按行查看 历史
yedongfu 提交于 2014-11-11 09:50 . updated with handy
#include <daemon.h>
#include <stat-svr.h>
#include <threads.h>
#include "handler.h"
#include <status.h>
#include <file.h>
#include "globals.h"
#include "logdb.h"
int main(int argc, const char* argv[]) {
if (argc < 2) {
printf("usage: %s <binlog file>\n", argv[0]);
return 1;
}
Status st = LogDb::dumpFile(argv[1]);
if (!st.ok()) {
error("dumpfile error: %d %s", st.code(), st.msg());
return 1;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yedf/leveldbd.git
[email protected]:yedf/leveldbd.git
yedf
leveldbd
leveldbd
master

搜索帮助