zap
zap copied to clipboard
blazingly fast backends in zig
I follow the instruct: > in your build.zig's build function, add the following before b.installArtifact(exe): > > const zap = b.dependency("zap", .{ > .target = target, > .optimize = optimize,...
Hello, I am trying to see how many concurrent requests can be served by Zap at a time and conducted the following test. However I am receiving connection reset by...
Adding as a TODO for myself (or others, if they find the time). Since it got merged in, there should be a test verifying that it works as expected when...
I don't know if this is an issue on all platforms, and might require some editing if it's not, but on MacOS building fails when trying to link openssl. ```...
Currently the only (exposed) way to send response is to create buffer where you write whole response and you send that. However it would be way more useful to have...
Versions: zig 0.11.0 zap 0.1.14-pre Steps to reproduce: 1. Create a new zig project with `zig init-exe` 2. Create a build.zig.zon file from the example in the README: ```zig .{...
Another essential feature: does zap as it stands today support HTTP streaming of chunked responses, ```Transfer-Encoding: chunked```? Today I've been kicking the tyres of ```facil.io``` in C. It's not bad,...
I find in zap/wrk/csharp/Properties/launchSetting.json, "ASPNETCORE_ENVIRONMENT" is "Development". For the best performance, the variable should be "Production".
I ran the endpoint example to play around with it for a while. I added a couple users. Deleted a few. Changed a few. However, When I tried to add...
e.g. avoid silently accepting handler functions that want to return an error which leads to unexpected pointer issues. at least comptime-introspect and check if 2nd param (the one after self)...