Sin descripción

walkor e553804e79 HTTP static hace 10 años
Applications 8ca98e0319 UPDATE TO VERSION 3.0 hace 10 años
GatewayWorker 8ca98e0319 UPDATE TO VERSION 3.0 hace 10 años
Workerman e553804e79 HTTP static hace 10 años
.gitignore 5e00c897de ignore hace 12 años
README.md 8ca98e0319 UPDATE TO VERSION 3.0 hace 10 años
start.php 2d5209154e Applications/*/start.php hace 10 años

README.md

workerman 3.0

create test.php

require_once './Workerman/Autoloader.php';
use Workerman\Worker;

// create socket and listen 1234 port
$tcp_worker = new Worker("tcp://0.0.0.0:1234");
//create 4 hello_worker processes
$tcp_worker->count = 4;
// when client send data to 1234 port
$tcp_worker->onMessage = function($connection, $data)
{
    // send data to client
    $connection->send("hello $data \n");
};

// another http worker
$http_worker = new Worker("http://0.0.0.0:2345");
$http_worker->count = 4;
$http_worker->onMessage = function($connection, $data)
{
    // send data to client
    $connection->send("hello world \n");
};

// websocket worker
$ws_worker = new Worker("websocket://0.0.0.0:5678");
$ws_worker->onMessage =  function($connection, $data)
{
    // send data to client
    $connection->send("hello world \n");
};

// run all workers
Worker::runAll();

run width php test.php start

available commands

php test.php stop
php test.php restart
php test.php status
php test.php reload