Skip to content

导出脚本支持批量插入,提高大表的导出速度,默认导出不使用use database 语句,以防止导入时选库其他库时,导入错误的库 #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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