Search code examples
zend-frameworkamazon-s3transfer

What is the most efficient way to copy a big file from Amazon S3 to the local filesystem using Zend Framework


i'm using Zend_Service_Amazon_S3 to copy files from the S3-storage to the local filesystem. What is the most efficient way to copy a big file to the local filesystem (> 1 GB)?


Solution

  • You can use the Streaming operations described in the Zend_Service_Amazon_S3 documentation. They are intended for this purpose.

    Hope that helps,