Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ golang 实现的零依赖、支持所有类型、高性能、并发 mysqldump
* 自定义 Writer: 如本地文件、多文件储存、远程服务器、云存储等。(默认控制台输出)。
* 支持所有 MYSQL 数据类型.
* 支持 INSERT Merge, 大幅提升数据恢复性能
* 导出支持 批量插入, 大幅提升数据恢复性能
* 导出支持 触发器

## QuickStart

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ A zero-dependency,all data types are supported, high-performance, concurrent mys
* Supports custom Writer: data can be written to any Writer, such as local files, multiple file storage, remote servers, cloud storage, etc. (default console output).
* Supports all MySQL data types QuickStart.
* Support Merge Insert Option in Source Greatly improve data recovery performance

* Support multy data in one insert
* Support dump table trigger

## QuickStart

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jarvanstack/mysqldump
module github.com/songdemei/mysqldump

go 1.18

Expand Down
Loading