I built a little php script that runs as a cron job.
Script dumps the data from a MySQL db into a file. I then use FTP to push the file to a server at a different location.
Occasionally my users report a server slowdown, and I wonder if this script is part of the problem.
Anybody with some knowledge:
Is there a lot of overhead with a server-to-server FTP file push?
Would I get better performance by running a cron script on the OTHER server to read and copy the SQL dump file?
If so, is there any perfomance difference in using a basic file() type read or an FTP type?
Thanks.
Nemo