vote up 4 vote down star
2

I've seen one idea on this blog, it seems a great solution especially if you work on a laptop because you don't have to fear the thunder, but you might fear the blue screen of death. We can also use a software to synchronize the RAM disk with another folder on the hard drive.

Do you have any ideas to improve the productivity of developers with a RAM Disk ?

The avantage of the RAM is that it becomes really really cheap, with 64b coming it might be very interesting to have ~6 Go to speed up your productivity.

flag
Is this not a question belongs to serverfault? – Ngu Soon Hui May 3 at 13:18
1  
+1 interesting question - having sufficient RAM and a relatively slow laptop drive I'll be interested in the answers. – The Feast May 3 at 13:19
1  
@Ngu This seems to be about increasing programming productivity, not administering a server. I'd be inclined to leave it here. – Brian Campbell May 3 at 13:23
You're going to be bottlenecked by by synchronization. You may as well look into battery backed DRAM based storage if you want to go down this road. – BobbyShaftoe May 3 at 13:29
Bobby, I don't think that the synchronization will be a bottle neck because while I'm working with visual studio or my project which is in the RAM, I don't need to access my file system, so I'm not sure about the bottleneck. – Nicolas Dorier May 3 at 13:41
show 2 more comments

4 Answers

vote up 1 vote down

I suggest you use tempfs in Linux. It does the same approach as Ram-Disk

link|flag
vote up 1 vote down

While developing I am not spending a lot of my time waiting for my IDE and tools or compiletimes. I spent most of the time with thinking, testing, debugging or just on typing.

I don't believe that I would gain a lot of productivity by using a ram disk over other types of memory caches if it would not speed up testing and debugging!

BTW I would not even try to develop on a "bare" laptop which limits my productivity with it's bad keyboard and monitor setup for long sessions.

But then... depending on what you develop it may greatly help to get your testing environment into a ram disk and/or onto different computers. This is where VMWare shines as productivity enhancement.

link|flag
vote up 0 vote down

Why not coding inside a virtual machine which is in a RAM Disk, synchronized in the hdd with a software chich takes care of the synchronization ?

Take a look at this video, do you imagine the gain of productivity ?

link|flag
1  
Wow, it even speeds up your internet connection! Amazing! – Calvin May 3 at 13:58
vote up 5 vote down

Your operating system uses memory to cache data and programs - if you use a RAM drive you stop it from doing that. RAM drives on modern operating systems are typically a performance pessimisation.

link|flag
2  
I think the phrase "performance pessimisation" is popular for poeple trying to be ironic but I think you may not be totally accurate. The I/O caches are not that big first of all. Second of all the usage patterns an IDE and compiler uses are not going to get much benefit from a cache, particularly in order for it to improve I/O performance over RAM disks. RAM disks do have certain problems with caching but this is in terms of proper utilization of the RAM disk itself. – BobbyShaftoe May 3 at 13:28
Not talking about I/O caches, but about VM cacheing. I agree that is not clear from my post - edited. – Neil Butterworth May 3 at 13:34
How would a RAM drive prevent the use of VM? And what does VM have to do with using memory to cache data (doesn't that happen with or without VM)? The blog author also claims that Visual Studio isn't caching data in memory but instead reads from the disk each time. So how would turning those disk I/Os into memory I/Os be a "performance pessimisation?" – Calvin May 3 at 13:56
A RAM disk prevents the use of VM cacheing of program code (executable instructions) and text (data), which originaly came from disk, because a RAM disk normally takes up a fixed amount of memory that cannot be used for anything else. Please note I am not talking about I/O buffering here. – Neil Butterworth May 3 at 14:02
Then a RAM disk only prevents the use of memory caching in so much as using a segment of memory for one thing prevents it from being used simultaneously for something else. In that case, get more memory, or limit your RAM disk size. I still don't know what you mean by VM caching and how that is different from normal memory use. And if the disk data is already stored in RAM, then why does it matter if it's not being "cached" by VM? – Calvin May 3 at 15:29
show 1 more comment

Your Answer

Get an OpenID
or

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