How does this Swoole compare to:
ReactPHP
Amp https://github.com/rdlowrey/Amp
First swoole is C extension, Not php code library.
Swoole have native multi-thread reactor. Pthread only be used in a thread-safe versions. Zend mm is not stable with multi-thread.
Swoole can truly asynchronous mysql.
Swoole have performance-based timerfd millisecond timer.
Work processes can be synchronous or asynchronous.
Most helpful comment
First swoole is C extension, Not php code library.
Swoole have native multi-thread reactor. Pthread only be used in a thread-safe versions. Zend mm is not stable with multi-thread.
Swoole can truly asynchronous mysql.
Swoole have performance-based timerfd millisecond timer.
Work processes can be synchronous or asynchronous.