Anurag Soni
Anurag Soni
> (which AFAICT is a thin wrapper around the underlying OS event notification mechanisms without also reimplementing other APIs like `luv` does) That is indeed the motivating factor behind `poll`....
> And get back to me if you get in trouble with the [proposed interface](https://erratique.ch/software/affect/doc/Fiber/index.html#blocking) I will definitely report back with my experience using `affect` with `poll`. I found out...
> use a trie or a DFA instead of walking through all routes using CPS. I experimented with this a lot when looking at routing implementation for `routes`. At the...
@aantron i've added some tests for unix `Users` (#673 )
@rgrinberg as part of https://github.com/mirage/ocaml-cohttp/pull/839 we added an api for async that allows using cohttp-async servers with reader/writer without going through conduit. This should cover the conduit-free interface for cohttp-async.
@rgrinberg Its the Expert module within cohttp-async https://github.com/mirage/ocaml-cohttp/blob/master/cohttp-async/src/server.mli#L109-L133 My intention behind it was for the user to create a tcp server using one of functions within Tcp.Server in async (https://ocaml.org/p/async_unix/v0.15.0/doc/Async_unix/Tcp/Server/index.html#val-create_sock)...
Thanks for publishing this. I've started using this instead of travis for my project https://github.com/anuragsoni/routes/tree/master/.github/workflows I'm using ubuntu to test various versions for pull-requests, then on merge i run an...
I did notice one issue with the windows builds when running with a `pull-request` trigger. It fails with an error about `--working-dir` not active. The windows action works fine with...
Some rough numbers from my naive `wrk` based testing Test command: `./_build/default/src/examples/echo.exe -j 128` Numbers from the thread based implementation on the current release ``` ➜ tiny_httpd git:(master) ✗ wrk...
FWIW I'm not sure I'm a huge fan of adding an api that will most likely only ever be used for `Host` header in one very specific scenario. I like...