fukamachi/fast-http

Write body to disk if the body is too big (multipart-parser)

Closed this issue · 0 comments

Multipart parser requires to hold body chunks on memory currently. It's fast, but it's not safe if the body is too big.

Python's multipart looks good https://github.com/defnull/multipart, it writes the body to disk when the body length exceeds the specified limit.