twosee
twosee
You just get a "NOTICE", it's usual, it means the client closed the connection, you can ignore it or set a higher `log_level`. About signall 11, What is your swoole...
when benchmarking with `time` parameter, when the test timeout, test script will force disconnect the connection, so the swoole server will notice you `connection[fd=\d+] does not exist.` and you benchmark...
By the way, please create a new issue to discuss the other problem.
@flddr about the async client coredump, please find your core file (`ulimit -c unlimited`), and use `gdb` then enter `bt` to check the call backtrace and the coredump position, create...
about multiple services on the same event loop, I will give you a general example soon.
@ClosetMonkey @flddr I said I would give you an example: on https://github.com/swoole/swoole-src/blob/f11021e885d6cfc264fe18a797de73f5b368ec58/tests/swoole_http_server/mixed_server.phpt Only need fifty lines of code, we can run a mixed server (http/http2/websocket/tcp). It has not merge into...
@dschissler README: https://github.com/swoole/swoole-src#mysql https://github.com/swoole/swoole-src#kinds-of-clients https://github.com/swoole/swoole-src#the-simplest-example-of-a-connection-pool
I have to point out that it's proactor, not reactor.
Good, we've discussed it before, move to Proactor design is really a difficult task, or we can’t get too many benefits, so we've done nothing. Of course, I am glad...
应该是把fwrite操作的notice转换成了ErrorException后特殊处理的结果, 真正的错误堆栈并不在此处 出现这个错误和代码质量有关(不管是你的还是你所使用的代码库), 没有在IO操作出错时立即捕获处理, 导致了错误上浮