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.
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.