English 中文(简体)
Is there a free or open source virtual in-memory drive for Windows?
原标题:

I m developing an plug-in for a host program and I need to communicate with it with temporary files in the disk; if the temporary files are stored in an in-memory virtual drive the performance could be increased dramatically.

Hints for implementing an in-memory virtual drive in Delphi is also appreciated.

问题回答

Check this one, it s based on a sample RAMDisk driver from MSFT, and appears to be configurable with a couple of registry tweaks.

There s a free edition of VSuite Ramdisk that may meet your needs.





相关问题
virtual column for drop down in the ruby on rails

How to place a drop down for the virtual column, in the ruby on rails. The virutal column does not exist in my table , but I want to get the value from the drop down ,when user saves the data. for ...

C++ : implications of making a method virtual

Should be a newbie question... I have existing code in an existing class, A, that I want to extend in order to override an existing method, A::f(). So now I want to create class B to override f(), ...

C++ static virtual members?

Is it possible in C++ to have a member function that is both static and virtual? Apparently, there isn t a straightforward way to do it (static virtual member(); is a compile error), but is there at ...

C++ collection of abstract base classes

how can I create STL collection of classes which implement abstract base class using the base class as collection value, without using pointers? is there something in Boost that allows me to ...

How to design a C++ API for binary compatible extensibility

I am designing an API for a C++ library which will be distributed in a dll / shared object. The library contains polymorhic classes with virtual functions. I am concerned that if I expose these ...

热门标签