I was wondering how can I make the IO faster by writing and reading temporary files to main memory. I've used to write to /dev/shm in Linux.

But now I'm in Windows 7. Anyone knows the answer ?

Thanks

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

If I understood it correctly (based on this post) what you are looking for is Memory Mapped Files.

link|improve this answer
feedback

You can use CreateFile() with FILE_ATTRIBUTE_TEMPORARY, and Windows should try to keep it in cache as much as possible.

link|improve this answer
1  
What I wanted is a nonprogramming way. Just like writing regular files in specific directory. – ablimit Jun 11 '10 at 1:05
feedback

This link summarizes the implementation of the /dev/shm concept for the Windows operating system: http://en.wikipedia.org/wiki/TMPFS#Microsoft_Windows

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.