mirror of
https://git.robbyzambito.me/zits
synced 2026-02-04 03:34:48 +00:00
Actually fast again???
way faster than before even?? coder@08714a4174bb:~$ nats bench pub foo -s localhost:4223 05:12:23 Starting Core NATS publisher benchmark [clients=1, msg-size=128 B, msgs=100,000, multi-subject=false, multi-subject-max=100,000, sleep=0s, subject=foo] 05:12:23 [1] Starting Core NATS publisher, publishing 100,000 messages Finished 0s [====================================================================================] 100% NATS Core NATS publisher stats: 574,666 msgs/sec ~ 70 MiB/sec ~ 1.74us So cool. src/server/client.zig JJ: M src/server/main.zig JJ: JJ: Lines starting with "JJ:" (like this one) will be removed.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
const std = @import("std");
|
||||
const builtin = @import("builtin");
|
||||
const zits = @import("zits");
|
||||
const yazap = @import("yazap");
|
||||
|
||||
@@ -8,7 +9,7 @@ const Server = zits.Server;
|
||||
pub fn main() !void {
|
||||
var dba: std.heap.DebugAllocator(.{}) = .init;
|
||||
defer _ = dba.deinit();
|
||||
const gpa = dba.allocator();
|
||||
const gpa = if (builtin.mode == .Debug or builtin.mode == .ReleaseSafe) dba.allocator() else std.heap.smp_allocator;
|
||||
|
||||
var app = yazap.App.init(gpa, "zits", "High performance NATS compatible client and server.");
|
||||
defer app.deinit();
|
||||
|
||||
Reference in New Issue
Block a user