this post was submitted on 28 Nov 2023
1 points (100.0% liked)

Hardware

33 readers
1 users here now

A place for quality hardware news, reviews, and intelligent discussion.

founded 11 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 9 months ago

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.