Hacker News new | ask | show | jobs
by carllerche 2020 days ago
The article called out 500usec as an upper bound for compute. How do you handle heavier compute operations (TlS, encoding / decoding, ...)
1 comments

on seastar, you yield a lot. so loops go from

    for( ... : collection) {}
to

   return seastar::do_for_each(collection, callback);