ioxide entry: update to 0.0.8 + extract handler#889
Open
MDA2AV wants to merge 5 commits into
Open
Conversation
Move the TLS handshake / async-db / crud / send-first loop out of Program.cs into a dedicated Handler.cs; HttpSession adjusted to match. Program.cs becomes wiring only.
ioxide/ioxide.pg/ioxide.file/ioxide.tls/ioxide.redis 0.0.5 -> 0.0.8 (revalidated asset cache + opt-in zero-copy send). TFM net10.0 -> net11.0 (0.0.8 is net11-only). README -> 0.0.8.
Set ServerConfig.WriteSlabSize to 128 KB so a static response fits a single slab and the handler sends it in one shot instead of chunk-flushing. Files larger than 128 KB still chunk.
The entry retargeted to net11 (ioxide 0.0.8 is net11-only), so the build SDK and runtime base images move 10.0 -> 11.0-preview to match.
Owner
Author
|
/benchmark -f ioxide |
Contributor
|
👋 |
Contributor
Benchmark ResultsFramework:
Full log |
<Features>runtime-async=on</Features> - compile the entry's async (the HTTP handle/send loop, the ioxide.pg/redis awaits) to the runtime-managed model. Preview feature; net11 only.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Updates the
frameworks/ioxide(ioxide engine) entry to ioxide 0.0.8.Changes
Program.csinto a dedicatedHandler.cs;HttpSession.csadjusted,Program.csbecomes wiring only.ioxide,ioxide.pg,ioxide.file,ioxide.tls,ioxide.redis(revalidated asset cache + opt-in zero-copy send).net10.0→net11.0— 0.0.8 is net11-only.Verified
Builds clean against 0.0.8; smoke run (2 reactors):
/json/5→ valid JSON,/baseline?a=2&b=3→5.Note
CI is red until ioxide 0.0.8 is published to nuget.org — this entry builds against the published packages (locally it resolves from a feed). The Dockerfile also needs the net11 SDK.