IOPS stands for Input Output Operations Per Second. The 4kb is the size of the IO data being read or written.
If you want't to know the specific read/write speeds, look at the spec. That will give you a better idea of how fast you can read from or write to the SSD.
Thanks for the reply. What I want to do is randomly access individual bytes of data from a large file on the SSD, just curious if the IOPS at 4kb is 100, 000 per second, whether or not the IOPS per byte would be the same (100, 000 per second) or 4, 000, 000, 000 (4, 000 bytes in a kb makes me think it'll be 4, 000 times faster to write a single byte ... ) />
This post has been edited by SpiderPig: 24 June 2013 - 05:17 PM
You can read any size you want from the file; however, you won't be reading directly from disk. The operating system will buffer chunks of the file into memory.