I am working on a (database-ish) project, where data is stored in a flat file. For reading/writing I\'m using the RandomAccessFile
class. Will I gain anything f
I am surprised every answer talks about performance, but no one distinguishes latency from throughput, whereas both are performance characteristics. While you may gain additional throughput employing multiple threads, as @RED SOFT ADAIR has shown, you trade off latency, especially in a case of Native Command Sequencing.