Limber
A super minimal HTTP framework that doesn't get in your way. (by nimbly)
React
Event-driven, non-blocking I/O with PHP. (by reactphp)
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Limber
Posts with mentions or reviews of Limber.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-07-26.
-
For those of you using async PHP (Swoole, ReactPHP, Amp), why'd you choose it and how has it been?
It's a self-rolled thing. You can find it here https://github.com/nimbly/limber.
React
Posts with mentions or reviews of React.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-07-29.
-
Concurrency and parallelism in PHP (part 1)
Even though this Generator's side is quite obscure for most PHP developers, it has been extensively explored by well-known libraries, such as ReactPHP and AMPHP, which we will see later on.
- ReactPHP – Event-driven, non-blocking I/O with PHP
- ReactPHP: Event-driven, non-blocking I/O in pure PHP
- FrankenPHP: The Modern PHP App Server
-
Getting started with asynchronous PHP using ReactPHP
ReactPHP is a library that allows you to turn PHP into something like Go or Node.js so that tasks can be performed asynchronously. Note that ReactPHP is just a library that you install with Composer. It doesn’t have cumbersome requirements, such as installing a custom PHP extension; it just works as intended.
-
Understanding Concurrency in PHP
ReactPHP is categorized as a low-level dependency for event-driven programming. It features an event loop that supports low-level utilities, such as HTTP client/server, async DNS resolver, streams abstraction, and network client/servers.
-
Which FW should I use for the link shortening service?
So you could either skip the framework entirely and shave of these 10ms per request, or you could turn to something like Laravel Octane or ReactPHP to have a long running application that answers requests without bootstrapping the whole framework each time (which is what Node.js, Python or .NET applications do, the practice of restarting the whole app with every request is quite unique to the PHP community).
-
How are folks feeling about the React team's push toward server components?
I remember calling out the movement to serverside of the frontend framework as reactPHP (I think it's when the remix hype first surfaced) on twitter and realized there's a literal php framework called reactPHP (https://reactphp.org/) since they liked my tweet lol.
-
PHP Swoole or OpenSwoole?
https://reactphp.org/ of course.
-
I don’t get all the hate for PHP and at this point I am too afraid to ask.
You could also use something like EventMachine (In ruby), Twisted (Python), Node (JS) or ReactPHP (for PHP) that will use the language and turn it into a web application server, and then you'll have only one long running process that handle all your requests with shared memory. You could even use something more fancy like RoadRunner in the case of PHP.