79707902

Date: 2025-07-20 09:37:17
Score: 3.5
Natty:
Report link

Probably, you have SQLite as your database (due to intensive File IO in performance analysis). Until .NET 6 File IO was really bad (check this video: https://youtu.be/0KjkyhxnJuA?si=g1Am3nVkhUOok24s) in CPU usage in async/await scenarios. Probably your database has no index for gameId column, so your queries need perform full-scan (read your table fully).

  1. Check your database indexes.

  2. I recommend use sync IO even in async methods if your IO is really fast due to async/await mechanism.

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): this video
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: inklesspen_rus