Florian Engelhardt
flowcontrol@phpc.social
<p>Proud dad of π§π§π§π§π§π§, Coder, Author, Speaker, Geek.<br />Vim, PHP π, Rust π¦, OpenSource!<br />PHP Profiling @ Datadog</p>
Posts
-
Post #4195629
RE: https://phpc.social/@Skoop/117002585033978331 π RIP Kavinsky
-
Post #1110871
πΆπ Life just got wilder: a few days ago, we welcomed little Isabell into our family! Now the crew is complete: three girls π©π©π© and three boys π¦βπ¦βπ¦. Life will never be boring! π
-
Post #819960
Thanks @nicolasgrekas for fixing a use-after-free in parallel. I just released v1.2.12: https://github.com/krakjoe/parallel/releases/tag/v1.2.12
-
Post #572189
Iβm heading to @ConFooCa 2026 in MontrΓ©al π¨π¦ in a few weeks, where Iβll be speaking about two things I care a lot about in the PHP world: observability and multithreading. If youβre going too, letβs connect! Always happy to chat observability, profilers, and real-world performance wins in PHP π #ConFoo #PHP #Observability #Performance #Multithreading
-
Post #572187
RE: https://hachyderm.io/@itworldcup/115926604229775228 Hey PHP folks, we got another 1 hour and 40 minutes to find 167 votes. GO PHP π
-
Post #572185
#PHP poll: is `sleep(5)` guaranteed to sleep at least 5 seconds?
-
Post #572184
New year*, new parallel release: v1.2.11 just landed with stability fixes π https://github.com/krakjoe/parallel/releases/tag/v1.2.11 * right on time for the Chinese New Year π₯π΄
-
Post #572183
RE: https://phpc.social/@flowcontrol/116087650104683820 Not only can it return earlier, it can also return later. Technically, `sleep()` tells the kernel βdonβt schedule me until at least X time has passedβ. The kernel puts the task into an interruptible sleep state and removes it from the run queue. A timer expiry marks it runnable again, and then the scheduler will run it when it gets CPU time, which can be a bit later depending on load and priority. It can also wake early if a signal interru...