MySQLデータベースを定期的にバックアップするために、Laravel 5でコードを書いています。これまでの私のコードは次のようになります。
$filename = 'database_backup_'.date('G_a_m_d_y').'.sql';
$destination = storage_path() . '/backups/';
$database = \Config::get('database.connections.mysql.database');
$username = \Config::get('database.connections.mysql.username');
$password = \Config::get('database.connections.mysql.password');
$sql = "mysqldump $database --password=$password --user=$username --single-transaction >$destination" . $filename;
$result = exec($sql, $output); // TODO: check $result
// Copy database dump to S3
$disk = \Storage::disk('s3');
// ????????????????????????????????
// What goes here?
// ????????????????????????????????
次のようなことを提案するソリューションをオンラインで見ました。
$disk->put('my/bucket/' . $filename, file_get_contents($destination . $filename));
しかし、大きなファイルの場合、file_get_contents() を使うのはもったいないのではないでしょうか? より良い解決策はありますか?