Rene Schallner
Rene Schallner
Sorry for the late reply. Apparently the author of facil.io is working on a new version [here](https://github.com/facil-io/cstl) which will support streaming w/o blocking a worker thread. Once this is ready,...
One more thing: You can consider websockets or even server-side messages as an alternative of streaming. Both are supported by facil.io, and at least web-sockets are wrapped by zap. SSM...
That would be a nice addition if facilio supported it. Can you verify everything works well when you set the `content-length` after the final write? My hunch is that after...
Yeah, I figured. But nothing stops you from wriing into an ArrayList, then passing its items to zap.
> That would be a nice addition if facilio supported it. Can you verify everything works well when you set the `content-length` after the final write? > > My hunch...
@MarcusWagberg I'll better keep it open until zig 0.12.0 arrives.
Yeah, I know. Need to fix it but didn't have time. It isn't really broken. It's just that I forgot to update the `build.zig.zon` version when creating the git tag. ...
`unhandledRequest` and `unhandledError` are only checked if they are present in the `Context`. The signature check is in App.zig, at line 345. See the examples/app/errors.zig example. There the MyContext defines...
master is currently WIP
I don't know. But when briefly checking out the source code, I noticed: They use a GeneralPurposeAllocator (now named DebugAllocator) as their main allocator, with `.{ .thread_safe = true }`....