walkor

Results 250 comments of walkor

When one business worker goes down the master process will immediately recreates a new available business worker. > how to initiate another business worker from another server when first BW...

After the workerman starts, it will create two kind of processes: the master process and the child process. The child process is used to process business, and the master process...

Are you using windows? This feature is available on Linux systems.

![image](https://user-images.githubusercontent.com/6073368/145764694-01b6263e-1d26-4e07-8d86-a4d6615f0e01.png) ![image](https://user-images.githubusercontent.com/6073368/145764739-fc0124dc-4f55-4e5c-89e5-2ee9a9fc70e9.png)

Master process does not run business code, it is stable enough. Don't worry about it.

I'm not familiar with `Mod Proxy Load balancer in Apache`. Load balancer needs to have the function of detecting and kicking out failed nodes. I don't know if Apache has...

The killing of the business process does not affect the client connection, and all clients still maintain this connection with the gateway process. If the gateway process is killed, all...

PHP cannot share variables directly between processes. You can store arrays in redis so that other processes can read them

```php Gateway::$registerAddress = 'xxxx'; ``` GatewayWorker 里没有这种用法。这个是GatewayClient的用法。