Hello!
On Mon, Feb 2, 2015 at 11:50 AM, Aleksey Smart wrote:
> Is there big performance differences between HttpUploadModule and
> lua-resty-upload when uploading big files?
>
No big performance difference is possible as long as you do not buffer
all the data chunks at once in Lua (that is, you should receive a data
chunk from the connection, then write it out to your file or whatever
backend immediately).
Regards,
-agentzh