Rendered at 02:48:00 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
cherryteastain 1 days ago [-]
You may want to look into coroutines so that the data can be fetched asynchronously.
ggcr 19 hours ago [-]
Yep! I'd also like to explore C++26 reflection for the XML FSM parser I currently have
Everything so far is synchronous. In our toy benchmarks I've found out Go to be quite performant, perhaps it's using go-routines behind the scenes (?) Haven't explored their internals yet but I was surprised
vrighter 12 hours ago [-]
a lightweight car kit that comes with everything you need to build a fully working car! All you need to add is a working engine (sold separately).
bitbasher 21 hours ago [-]
“Just” curl and openssl. Those are not small and do a ton of lifting… easily adds 2-3mb to a static binary.
ggcr 19 hours ago [-]
Fair point. Should've titled it "minimal dependencies" perhaps
Since C++ has no HTTP client in its std lib, I really had no other choice but to use curl. Same with OpenSSL. It'd be quite naïve of me to re-implement the whole HTTP stack and SHA256 from scratch =)
Everything so far is synchronous. In our toy benchmarks I've found out Go to be quite performant, perhaps it's using go-routines behind the scenes (?) Haven't explored their internals yet but I was surprised
Since C++ has no HTTP client in its std lib, I really had no other choice but to use curl. Same with OpenSSL. It'd be quite naïve of me to re-implement the whole HTTP stack and SHA256 from scratch =)