Posts For Tag: Promises
Managing Concurrency: From Promises to Coroutines
26 Oct 2018
What does concurrency mean? To put it simply, concurrency means the execution of multiple tasks over a period of time. PHP runs in a single thread, which means that at any given moment there is only one bit of PHP...
READ MOREManaging ReactPHP Promises
16 Jan 2018
Asynchronous application is always a composition of independently executing things. In concurrency, we are dealing with a lot of different things at once. You can compare it with I\O driver in your OS (mouse, keyboard, display). They all are managed...
READ MORE