Hacker News new | ask | show | jobs
by pritambaral 2027 days ago
Well, io_uring is cheaper (significantly!) precisely because its for async operations, which can be pipelined. Application logic almost never uses malloc() in asynchronous, pipelineable fashion.
1 comments

I’d argue that’s exactly what happens, especially during object initialisation in C++.