This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "time" | |
| ) | |
| const numWorkers = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # store start date to a variable | |
| imeron=`date` | |
| echo "Import started: OK" | |
| dumpfile="/path/to/db.sql" | |
| ddl="set names utf8; " | |
| ddl="$ddl set global net_buffer_length=1000000;" |
OlderNewer