This framework is based on concepts and components of other open source software, especially Zend Expressive, Zend Stratigillity, Recoil and React PHP.
Install a project using composer package manager:
composer create-project antidot-fw/reactive-starter dev
mv dev/.* dev/* ./ && rmdir dev
bin/console server:run
Open your browser localhost on port 5555
and you will see the DriftPHP Server up and running.
Default config
parameters:
server:
host: '0.0.0.0'
port: '5555'
max_concurrency: 100
buffer_size: 4096
workers: 4
To run it in dev mode you can run config:development-mode
command
bin/console config:development-mode
Or you can do it by hand renaming from config/services/dependencies.dev.yaml.dist
to config/services/dependencies.dev.yaml
mv config/services/dependencies.dev.yaml.dist config/services/dependencies.dev.yaml
composer require seregazhuk/php-watcher --dev
You can use Php whatcher with composer for more friendly development.
bin/console server:watch
Open another console and check the built-in Cli tool
bin/console
It allows executing promises inside PSR-15 and PSR-7 Middlewares and request handlers
<?php
declare(strict_types = 1);
namespace App;
use Antidot\React\PromiseResponse;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
class SomeMiddleware implements MiddlewareInterface
{
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
return new PromiseResponse(
resolve($request)->then(static fn(ServerrequestInsterface $request) => $handler->handle($request))
);
}
}
<?php
declare(strict_types = 1);
namespace App;
use Antidot\React\PromiseResponse;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
class SomeMiddleware implements RequestHandlerInterface
{
public function process(ServerRequestInterface $request): ResponseInterface
{
return resolve($request)->then(
function(ServerrequestInterface $request): ResponseInterface {
return new Response('Hello World!!!');
}
);;
}
}
It allows executing classic PSR-15 middleware and request handler:
<?php
declare(strict_types = 1);
namespace App;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
class SomeMiddleware implements MiddlewareInterface
{
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
return $handler->handle($request);
}
}
<?php
declare(strict_types = 1);
namespace App;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
class SomeMiddleware implements RequestHandlerInterface
{
public function process(ServerRequestInterface $request): ResponseInterface
{
return new Response('Hello World!!!');
}
}
Using apache ab with single thread:
> ab -n 40000 -c 64 http://127.0.0.1:8080/
This is ApacheBench, Version 2.3 <$Revision: 1843412 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 127.0.0.1 (be patient)
Server Software: ReactPHP/1
Server Hostname: 127.0.0.1
Server Port: 8080
Document Path: /
Document Length: 96 bytes
Concurrency Level: 64
Time taken for tests: 16.201 seconds
Complete requests: 40000
Failed requests: 0
Total transferred: 8960000 bytes
HTML transferred: 3840000 bytes
Requests per second: 2468.93 [#/sec] (mean)
Time per request: 25.922 [ms] (mean)
Time per request: 0.405 [ms] (mean, across all concurrent requests)
Transfer rate: 540.08 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.0 0 1
Processing: 15 26 1.4 25 33
Waiting: 15 26 1.4 25 33
Total: 16 26 1.4 25 33
Percentage of the requests served within a certain time (ms)
50% 25
66% 25
75% 26
80% 26
90% 27
95% 29
98% 31
99% 32
100% 33 (longest request)
using wrk:
> wrk -t8 -c64 -d15s http://127.0.0.1:8080/ [95ba8e6]
Running 15s test @ http://127.0.0.1:8080/
8 threads and 64 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 26.14ms 1.44ms 34.63ms 92.76%
Req/Sec 306.84 24.52 373.00 81.17%
36670 requests in 15.04s, 8.50MB read
Requests/sec: 2437.45
Transfer/sec: 578.42KB
See ranking in The Benchmarker - Web Framework project.