You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Registers the true-async/server framework — a native PHP HTTP server built on the TrueAsync coroutine engine (no Caddy / FrankenPHP / FastCGI in front).
What's here
frameworks/true-async-server/ (9 files):
Dockerfile — pins base image to trueasync/php-true-async:0.7.0-beta.2-php8.6 (PHP 8.6 + TrueAsync ABI v0.16 + true-async-server v0.6.1).
entry.php — handlers covering the 18 profiles subscribed in meta.json.
PostgreSQL.php / SQLite.php — DB adapters using the native PDO connection pool.
meta.json — framework metadata + test subscription list.
docker-compose.yml — local dev compose stack.
test/Dockerfile, test/validate.sh — per-framework test harness.
SKIP_TUNE=true ./scripts/validate.sh true-async-server → 57 passed, 0 failed (validated against latest base image with HttpArena's bundled validate suite, including the recent TCP fragmentation tests).
Notes
site/data/frameworks.json registration is intentionally omitted — happy to add it in this PR or a follow-up depending on your preference for site listing.
Site bench artifacts (site/data/*.json, site/static/logs/*) are not included — those are regenerated by benchmark.sh --save runs.
⚠️/benchmark --save cannot start: main has diverged and cannot be auto-merged into this branch. Please merge or rebase main manually, push, and re-run /benchmark --save.
Hi! The Warning: could not push to fork (permissions) in the benchmark workflow is caused by GitHub's known limitation with org-owned forks — maintainer_can_modify is set to true in the API but GITHUB_TOKEN still can't push to org forks (only user forks).
A simple solution is to submit the PR from a private fork.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Registers the true-async/server framework — a native PHP HTTP server built on the TrueAsync coroutine engine (no Caddy / FrankenPHP / FastCGI in front).
What's here
frameworks/true-async-server/(9 files):Dockerfile— pins base image totrueasync/php-true-async:0.7.0-beta.2-php8.6(PHP 8.6 + TrueAsync ABI v0.16 + true-async-server v0.6.1).entry.php— handlers covering the 18 profiles subscribed inmeta.json.PostgreSQL.php/SQLite.php— DB adapters using the native PDO connection pool.meta.json— framework metadata + test subscription list.docker-compose.yml— local dev compose stack.test/Dockerfile,test/validate.sh— per-framework test harness.Subscribed profiles (18)
baseline,pipelined,limited-conn,json,json-comp,json-tls,upload,api-4,api-16,static,static-h2,baseline-h2,baseline-h2c,json-h2c,baseline-h3,static-h3,async-db,fortunes.Validation
SKIP_TUNE=true ./scripts/validate.sh true-async-server→ 57 passed, 0 failed (validated against latest base image with HttpArena's bundled validate suite, including the recent TCP fragmentation tests).Notes
site/data/frameworks.jsonregistration is intentionally omitted — happy to add it in this PR or a follow-up depending on your preference for site listing.site/data/*.json,site/static/logs/*) are not included — those are regenerated bybenchmark.sh --saveruns.