• 0 Posts
  • 1 Comment
Joined 10 months ago
cake
Cake day: November 29th, 2023

help-circle
  • I’m having a blast with them. You’ll need some effort to take advantage of them, though. For example, standard C or C++ file IO lets the operating system do some buffering/caching in the background, which completely thrashes CPU and consequently also read performance. Do unbuffered reads, for which you’ll unfortunately have to use native winapi because its not in the c standard, an you’ll be able to fully utilize the SSD.