源实例生成aof数据(导出)
#源实例开启aof功能,将在当前目录下生成appendonly.aof文件
redis-cli -h 127.0.0.1 -a password config set appendonly yes
目标实例导入aof数据
# 假设appendonly.aof就在当前路...
修改my.ini文件
编辑或添加:max_allowed_packey = 1024M
编辑完成后,需要重新启动MySQL
关闭MySQL的自动提交(注:记得删掉字段索引,等导入成功后再建立!)
连接MySQL:mysql -uroot -proot
执行如下语句:
set autoc...
[codesyntax lang="php"]
$file=$_FILES['file'];
$fileName=$file['tmp_name'];
if (!$files = fopen($fileName, 'r')) {
echo "文件读取失败";
exit;
}
$data = [];
fgetcsv($files); // skip table head
while ...