fun thing i learned yesterday, the curl tool cannot stream out a file larger than available memory

as a result, in my ongoing quest to implement a network based import feature i have to write a custom import tool that sends it out in a stream... i don't see why it can't be fed in as a stream just that stupid curl is written to copy to memory then copy to network instead of write file to http transmission

Reply to this note

Please Login to reply.

Discussion

well, you can actually do it but then something else kicks in and resets the connection

i just have to write a thing that parses lines out of the file and then makes a request for each one

maybe --no-buffer?