this post was submitted on 28 Nov 2023
1 points (100.0% liked)
Hardware
47 readers
1 users here now
A place for quality hardware news, reviews, and intelligent discussion.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.