MARiA so cute

Results 186 comments of MARiA so cute

Hello, your meaning is that after uploading the file, there is a memory leak?

Swoole will keeps a copy of the request data in memory, allowing you to get the raw http message through `Swoole\Http\Request->getData()`.

You can try setting the `upload_max_filesize` configuration. As long as the content-length header of the http message is greater than `package_max_length`, swoole will write the uploaded file content directly to...

@joysonjoy1811 fixed by swoole5.1.5. see https://github.com/swoole/swoole-src/releases/tag/v5.1.5

The reason for this problem is that the program is stuck in a deadlock, with all processes handling the `/test/foo` request and waiting for a response to the `/test/bar` request....

The occurrence of this problem is caused by dependencies between requests.