使用AsyncTcpConnection来让workerman作为客户端连接wss,出现了错误: SSL handshake error: stream_socket_enable_crypto(): SSL operation failed with code 1. OpenSSL Error messages: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:...
使用方法引用的是:http://doc.workerman.net/faq/async-task.html 高并发下,workerman把繁重的任务交给本机另一个任务进程异步处理。 workerman发送数据,发送的$task_data里带有发送时间的时间戳: $task_data = time(); $task_connection->send(json_encode($task_data)); 任务进程...