1

I'm currently using 4 GB of RAM as a RAM-cache using FancyCache, it's caching my SSD. It's working very well with games as load times are almost zero, it's also working well with the Adobe suite. It's decreasing the usage of my SSD as well, which is a good thing.

I have 16 GB of RAM in total and my question is, would you say that getting 16 GB of additional RAM and using it for FancyCache would be beneficial?

Thanks! (I realize this question isn't very problem-oriented and if it's not the right forum for it I apologize)

My computer spec: Asus P9X79 Deluxe, i7 3930K @ 4.3 Ghz, Corsair Vengence LP 4x4 GB, Samsung SSD 830 256 GB, Win 7 Pro x64

2 Answers 2

1

As of now (May 2012) I'd say that getting an additional 16 GB or RAM to use for FancyCache would be money well spent. If you play several different games in addition to using large applications, you shouldn't have any problems filling up 16 GB cache. 16 GB extra RAM isn't too much of an investment, and it will make sure your system stays fast and responsive when switching between large applications and games.

1
  • Yes, RAM is indeed very cheap and my first thought was that if I have the space for it I might as well use it. I'd almost decided not to buy more until you guys came along but now I'll probably get 16 GB more. I won't be able to test for another two weeks so I'll see then. What kind of setup do you have?
    – Henric
    Commented May 30, 2012 at 1:29
1

I got 48GB RAM (X58 platform with 6x8GB sticks), and I dedicated 16GB to FancyCache under Win7. FancyCache comes with a built in monitoring. The monitoring of utilization is by far, the most crucial thing you can do to make that determination.

I am using this box to crack passwords using large dictionaries (~400GB), so I was hoping to at least keep in RAM some of the most frequently used dictionaries. To my surprise, because of how my scripts were set up, I was looping over all the same set of hashes with different dictionaries, effectively 'dirtying up' my cache by continuously reading in new dictionaries. As a result of that, my cache hit ratio was abysmally bad (something like 0.1%). So I flipped the order like this:

from

for hash in hashes; 
   for dict in dicts; 
      crack hash with dict

to

for dict in dicts; 
   for hash in hashes;
      crack hash with dict`  

This way the dictionary that was just read stays in memory for the next set of hashes, and the next read occurs from RAM not disk.
This little order-flip woke up the read cache, as now it averages around 80%. That one observation was worth in gold.
Furthermore, limiting your FancyCache to work only on disks with the data you know that are going to have heavy IO, and not relying on the OS to figure it out, is also quite beneficial.

Second best thing I did, was observing the write caching behaviors. Turns out, some programs are playing it safe, and try to dump data after every little chance, instead of merging multiple writes into less frequent but larger writes. When done in fully synchronous fashion, this caused the program to block until the write was complete. My box is on a UPS, so I don't need to worry about blowups before the write cache completes the write-back. This hugely helped with the raw performance of my main program, but it also visibly helped with smoothness of the system, as the system would not come to a halt every time the write cache was busy committing dirty buffers to disk. Of course, without a UPS (or a battery if it's a laptop), this would be a dangerous scenario.

All these things come to a fundamental CS problem if 'working set' size. If you're working on a single 4GB file, then probably a bit more than 4GB will do just fine (unless the application tries to store multiple level of undo's in memory). There is NO point of allocating memory to FancyCache unless you're actually using it. If you're near 100% of it, make it bigger, but if you're at 2%, then you're just wasting RAM.

1
  • Thank you for your comment! That is a very good point about monitoring actual usage, I haven't been able to use my computer much since I've been very busy at work but I will get around to this when I get the time. I do not have an UPS and I don't plan on getting one so I'm going to stick with fully synchronous writes as of now. Thanks again!
    – Henric
    Commented May 30, 2012 at 1:17

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .