I am working on an application which has below requirements -
- Download a ZIP file from a server.
- Uncompress the ZIP file, get the content (which is in XML format) from this file.
- Process the content and insert it into DB.
The concern here is that the XML file may be of Huge size say like 2 GB!
What's the Laravel/PHP way of doing that without killing the server?