Joel Bodenmann

Results 35 issues of Joel Bodenmann

Running `cpufetch` on a host with a `AMD Ryzen 9 9900X` CPU shows: `Unknown microarchitecture detected: M=0x4 EM=0x4 F=0xF EF=0xB S=0x0`. `cpufetch`: ``` Name: AMD Ryzen 9 9900X 12-Core Processor...

Currently, we're maintaining our own threadpool. It might be worth considering using `boost::asio::thread_pool` instead.

Since we moved from C++20 to C++23, we can now leverage "explicit-this" (or "deducing this") from P0847. This can be used anywhere where we currently implement CRTP by manually passing...

enhancement
good first issue

Inside of `malloy::server::routing_context::start()`, we make a call to `boost::asio::ip::make_address()`. If the supplied string cannot be converted to an IP address, an exception is thrown. There is an overload of `make_address()`...

enhancement

We pass the `boost::asio::io_context` around at places. Consider just passing an `io_executor` like `boost::asio::any_io_executor` instead. AFAIK that is the "proper" way of doing it.

enhancement