Inpired by Pokio (from Nuno), I’ve been building: Parallite-PHP. A open-source library that brings true parallelism to PHP, with a simple and expressive API. 😁
Just use: async() and await()
Under the hood, Parallite is orchestrated by Parallite Go (write in Go), a open-source application that handles task execution with blazing speed. No extensions, no hacks, just clean PHP code that runs in parallel.
- Check PHP component: github.com/b7s/parallite-php
- Check Go daemon: github.com/b7s/parallite
Star it if you like it ⭐
In the images, we have a project using FilamentPHP, with + 20 thousand orders, simulating several heavy calculations
⚠️ Be careful when using, test before using in production
Simple example:
Filament:
Back