7 ms·
> If you know your read and write patterns very well you can effectively use this for nearly asynchronous IO without the pains of AIO and few to none extra thre
by seastarer 9y ago
> If you know your read and write patterns very well you can effectively use this for nearly asynchronous IO without the pains of AIO and few to none extra threads.
This may work for sequential reads, but not for random reads.
- the8472 9y agoNot just sequential reads. Any reads where you know the pattern and can advise in advance.