Viewing profile — edmondx
edmondx
HN member- Joined
- Wed, Apr 15, 2026, 5:27 PM UTC
- HN karma
- 3
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About edmondx
No profile information was provided.
Recent public activity
- story
-
comment
Comment #48009144
Of all the ways to program with async, I like transparent asynchrony the most. Even though it may seem implicit, it turns out to be the most convenient.
-
comment
Comment #48009035
Great article. I like how it presents a realistic view without hype, showing both the benefits and the tradeoffs.
-
comment
Comment #47873210
[dead]
-
comment
Comment #47873061
Swoole Compiler v4 introduces a native AOT (Ahead-of-Time) compiler that radically changes the landscape. The AOT compiler abandons traditional PHP interpretation and allows code t…
- story
-
comment
Comment #47866217
[dead]
-
comment
Comment #47815380
[dead]
-
comment
Comment #47815357
> No actually it's a joy to have no multithreading. To build CPU-bound applications in PHP, you have to install a bunch of packages, rely on Redis, and try to approximate what Pyth…
-
comment
Comment #47815333
It seems like you’re talking about something similar: https://true-async.github.io/en/docs/components/thread-pool.... I’ve also wanted parallelism in PHP for a long time. Especiall…
-
comment
Comment #47805485
I also feel a shift in what I spend my time on. Sometimes I just don’t feel like thinking about complex things. But is that really a problem? If you’re too lazy to do something, ma…
-
comment
Comment #47805473
[dead]
-
comment
Comment #47805444
[dead]
-
comment
Comment #47792942
Nice to see more native C extensions pushing performance boundaries in PHP. Writing grep as an extension rather than shelling out or using preg_match for large file scanning makes …
-
comment
Comment #47792717
> PHP SDK is in the works and should be out by end of day Glad to hear that! Thank you!
-
comment
Comment #47790547
Clean approach. We deal with similar memory lifecycle problems in a PHP async extension (C, libuv-based reactor). Coroutine stacks and their associated state need deterministic cle…
-
comment
Comment #47790534
Great timing with this — the LocalStack auth token change broke a lot of CI pipelines. Nice to see a Rust-based alternative with that kind of startup time (~500ms, 10 MiB idle). Th…
-
comment
Comment #47789920
Sounds very promising. Although right now I’m working on a project together with MLIR.
-
comment
Comment #47789901
I’m afraid the balance of open source wasn’t broken today. It happened quite a long time ago. It’s just not something people usually talk about. Companies have been using open sour…
-
comment
Comment #47789851
I’m working on https://github.com/true-async/php-async and planning to bring it to a production-ready state. It would be great to build a fast HTTP server.