Browse Source
When server.stream-request-body = 0 (the default), the entire request body is collected before engaging the backend. For backends which require data framing, this could lead to growth in memory use as large requests were framed all at once. Prefer to retain large request bodies in temporary files on disk and frame in portions as write queue to backend drains below a threshold. x-ref: "Memory Growth with PUT and full buffered streams" https://redmine.lighttpd.net/issues/3033master
2 changed files with 12 additions and 3 deletions
Loading…
Reference in new issue