bronsted/fiberloop

v2.0 2023-07-24 13:09 UTC

This package is auto-updated.

Last update: 2024-04-24 14:44:18 UTC


README

This package implements coroutines by utilizing php fibers. It does the same job a Revolt but implementation is different. It has the same interface as Revolt and I have expanded it a bit.

On top of this I have build Psr-Http which is a PSR complaint Http web server and a client.

Using coroutines enables you to write code which handles multiple tasks in php single threaded execution model. This makes your program efficient and can handle more work.

Installation

This package can be installed with Composer

`composer install bronsted\fiberloop`

Usage