I am trying to dynamically serve Zip files, I would like to unzip a file 1x on script launch, and on every request, include a string in a text file and stream the whole zip file to the client.
To handle decent sized concurrency my best solution so far has been to use filesystem Zip and Unzip in a Ramdisk...
It seems like it should be easy to buffer the file into memory, and stream it out per request with modified contents.