Hi friends,
I want my code to process a file very fast. This file size will vary from single KB to even 2 GB.
Even i am ready to create a separate file system for that single file.
I will split the file as constant size blocks(probably 8KB) and access it for data read and write. The code wise, the algorithm cannot be changed because it gives good performance and also stable one. so I don't want to change. I am also using mmap() to map blocks to memory on demand basis.
Is it possible to get a file system as a single block so that the the file access, read write operations can be faster?
Please give all your suggestions even a small thing that will help me.
The suggestions can be across platforms and file systems.
Thanks, Naga