0

In the interest of increasing performance, is it possible to read asynchronously from a CIFS mounted file, on linux?

Thanks!!!

Jacko
  • 12,665
  • 18
  • 75
  • 126

1 Answers1

0

Glibc's aio implementation creates threads to do the I/O, so it does not depend on the filesystem type to work. (On the other hand, that also means you can create your own threads instead, without missing out on much.)

jilles
  • 10,509
  • 2
  • 26
  • 39