Hi,
I am writing an nginx module that serves static files and also supports upload of large files ( 100 KBs ~ 16 MB ).
One of the requirements I have is, I cannot afford to write small chunks as I get them from network to disk and instead, need to accumulate them until entire buffer is assembled in memory and then write out to underlying disk. Is there any openresty module that is close to what I am looking for ? Even if there no such, could you please point any reference to an openresty module that has similar functionality whose code I can refer to ?
Thanks