-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maximum number of concurrent requests per Zap process #97
Comments
How do you think the UserMap is shared among 4 worker processes? I just checked. I, too, had 2 worker processes in the example. That is wrong. If you need to share state (zig variables), you can only have 1 worker. |
Hello,
I checked https://github.com/zigzap/zap/blob/master/blazingly-fast.md and see it was able to handle 400 concurrent requests. I re-ran the same test with
|
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 peer errors on the load generation tool. I am using
hey
(https://github.com/rakyll/hey) as the load generation tool. I followed the following steps:build.zig
andbuild.zig.zon
files.Compiled the sample using:
zig build --summary all
Started the program using:
I am trying to understand what would be the maximum number of concurrent connection supported by a single instance of Zap. If you would like me to post the question elsewhere, I am happy to do so. Thanks!
The text was updated successfully, but these errors were encountered: