A high performance networking framework aiming to speed up the development of TCP based servers.
HTTP and WebSocket support is already provided with the framework, so you can start working on your web based projects right away.
A simple Hello World HTTP application looks like this:
class HelloWorld extends HttpComponent {
public static $PATH = '/';
public function onRequest($con, $request, $response) {
if ($request->getPath() == '/') {
$response->write("Hello World!");
return true;
}
return false;
}
}
If you are interested in benchmarks go to the performance tests