Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
edmondx
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
edmondx
5mo ago
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.
2.
▲
by
edmondx
5mo ago
Great article. I like how it presents a realistic view without hype, showing both the benefits and the tradeoffs.
3.
▲
PHP will get an AOT compiler from the Swoole team in 2027
(old.reddit.com)
3 points
by
edmondx
5mo ago
|
2 comments
4.
▲
by
edmondx
5mo ago
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 to be compiled directly into native binary executables. Perfo
5.
▲
by
edmondx
5mo ago
> 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 Python or Go can do in a dozen lines of code. Can that r
6.
▲
by
edmondx
5mo ago
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. Especially the kind of parallelism th
7.
▲
by
edmondx
5mo ago
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, maybe it doesn’t need to be done at all?
8.
▲
by
edmondx
5mo ago
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 a lot of sense — you skip the regex overhead for fixed-strin
9.
▲
by
edmondx
5mo ago
> PHP SDK is in the works and should be out by end of day Glad to hear that! Thank you!
10.
▲
by
edmondx
5mo ago
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 cleanup when a coroutine completes or gets cancelled — arenas w
11.
▲
by
edmondx
5mo ago
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). The "real PostgreSQL/Redis behind RDS/ElastiCac
12.
▲
by
edmondx
5mo ago
Sounds very promising. Although right now I’m working on a project together with MLIR.
13.
▲
by
edmondx
5mo ago
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 source code for years to build paid products without giving anyt
14.
▲
by
edmondx
5mo ago
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.