Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • async/await exists for a long time and most code bases are async
  • async/await sugar somewhat makes this less obvious
  • custom thread pools are less common
Code Block
languagec#
await cache.PutAsync(1, 1);
// Now we are on a Striped pool!

// CPU-heavy method blocks the stripe and cache ops are stalled
RunSomething();


Description

// Provide the design of the solution.

...